Get incident links

get

/km/api/v1/content/{id}/incidentLinks

This method returns a paginated list of IncidentLink objects for all the incidents linked to the specified Content object.

For details on the fields you can sort, see the schema and catalog for the incidentLinks resource. To get the schema and catalog information, use the GET method with the mediaType value as application/schema+json in the HTTP request.

The example URI to get the schema and catalog of the resource is as follows:

http://<IM_REST_API_HOST>/km/api/latest/metadata-catalog/incidentLinks.

Example URIs

Following are the example URIs for this method:

  • http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks

    The request returns a paginated list of IncidentLink objects in the FULL mode. The response contains nested ContentKey objects displayed for the published version of the content sorted by date added.

  • http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks?mode=KEY

    The request returns a paginated list of IncidentLink objects in the KEY mode sorted by date added.

  • http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks?mode=KEY&orderBy=recordId

    The request returns a paginated list of IncidentLink object in the KEY mode sorted by recordId.

  • http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks?limit=5&offset5

    The request returns a paginated list of a maximum of five IncidentLink objects in the FULL mode, starting with the IncidentLink at position five in the returned list.

  • http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks?contentState=LATESTVALID

    The request returns a paginated list of IncidentLink objects in FULL mode. This response contains nested ContentKey objects displayed for the latest valid version of the content. Valid options for contentState include: PUBLISHED and LATESTVALID.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ResultList IncidentLinkKey
Type: object
Title: ResultList IncidentLinkKey
Match All
Show Source
Nested Schema : Collection Paging Resource
Title: Collection Paging Resource
Oracle base collection resource schema definition.
Match All
Show Source
Nested Schema : Base Collection Resource
Title: Base Collection Resource
Oracle base collection resource schema definition.
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : Base Collection Resource-allOf[1]
Type: object
Show Source
Nested Schema : Collection Paging Resource-allOf[1]
Type: object
Show Source
Nested Schema : ResultList IncidentLinkKey-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Nested Schema : items
Type: array
Show Source
Nested Schema : IncidentLinkKey
Match All
Show Source
Nested Schema : IncidentLinkKey-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to find a paginated list of Incident Link objects for all the incidents linked to the specified Content object by submitting a get request on the REST resource using cURL.

cURL Command

Command: curl -X "GET" "http://<IM_REST_API_HOST>/km/api/latest/content/{id}/incidentLinks"

Example of Request Header

The following shows an example of the request header.

-H "kmauthtoken: {\"siteName\":\"ORACLE_KNOWLEDGE\",\"integrationUserToken\":\"\"+eCJYkxKwj5HUaIiJYun0/TpatwT1LmtcsF05W33xnEojifV/AsLDj9RpN0lKuorTMNKeSE1tgC7svVL+BzntqDON4KiM1HFlpxvXEUCB0P2w0Xrs75McygqxdVaDSE9"}" \
-H "Accept: application/json"

Example of Response Body

The following shows an example of the response body in JSON format.

{
  "dateAdded" : "2013-11-05T13:48:20EST",
  "dateModified" : "2013-11-05T13:48:20EST",
  "incident" : {
    "recordId" : "2LKAJDFO8234OIJ3O24P18439837409819",
    "incidentId" : "140005-14895892",
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET",
      "profile" : "http://<IM_REST_API_HOST>/km/api/{version}/metadata-catalog/{resourceName}"
    } ]
  },
  "document" : {
    "recordId" : "10834GALKGJ0187394813N401347981324",
    "versionId" : "1324IUH12934701324NL340987134KJN1341",
    "documentId" : "RE123",
    "title" : "Reference Document for Oracle Knowledge",
    "version" : "4.0",
    "answerId" : 0,
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET",
      "profile" : "http://<IM_REST_API_HOST>/km/api/{version}/metadata-catalog/{resourceName}"
    } ]
  },
  "recordId" : "321SDF6FO82346824P1842344409654SD14",
  "links" : [ {
    "rel" : "canonical",
    "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
    "mediaType" : "application/json, application/xml",
    "templated" : true,
    "method" : "GET",
    "profile" : "http://<IM_REST_API_HOST>/km/api/{version}/metadata-catalog/{resourceName}"
  } ]
}
Back to Top