Find by ID

get

/km/api/v1/tasks/contentRecommendationTasks/{id}

This method returns a ContentRecommendationTask object having the specified ID parameter.

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/tasks/contentRecommendationTasks/{id}

    The request returns the ContentRecommendationTask object having specified ID parameter in FULL mode.

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

    The request returns the ContentRecommendationTask object having specified ID parameter in the KEY mode.

  • http://<IM_REST_API_HOST>/km/api/latest/tasks/contentRecommendationTasks/{id}?mode=DATA

    The request returns the ContentRecommendationTask object having specified ID parameter in the DATA mode.

Response Error

The possible error response for this method is as follows:

  • OKDOM-GEN0002

    The error is displayed when the specified ID is invalid or it does not exist in the database.

Request

Path Parameters
  • The unique identifier of the object to be retrieved.
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ContentRecommendationTask
Match All
Show Source
Nested Schema : TaskData
Match All
Show Source
Nested Schema : TaskKey
Match All
Show Source
Nested Schema : Singular Resource
Type: object
Title: Singular Resource
Oracle base singular resource schema definition.
Show Source
Nested Schema : TaskKey-allOf[1]
Type: object
Show Source
Nested Schema : TaskData-allOf[1]
Type: object
Show Source
Nested Schema : ContentRecommendationTask-allOf[1]
Type: object
Show Source
Nested Schema : ContentRecommendationKey
Match All
Show Source
Nested Schema : ContentRecommendationKey-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to view a ContentRecommendationTask object having the specified ID parameter.

curl -X "GET" "http://<IM_REST_API_HOST>/km/api/latest/tasks/contentRecommendationTasks/{id}" 

Example of Response Header

The following shows an example of the response header.

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

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "dateAdded" : "13504037-10-06T16:30:04EDT",
  "dateModified" : "116459413-10-06T12:30:21EDT",
  "comments" : "COMMENTS_VALUE",
  "priority" : "LOW",
  "taskStatus" : "UNKNOWN",
  "taskType" : "REVIEW_DATE",
  "age" : "AGE_VALUE",
  "taskTypeDisplay" : "TASKTYPEDISPLAY_VALUE",
  "taskPriorityDisplay" : "TASKPRIORITYDISPLAY_VALUE",
  "taskName" : "TASKNAME_VALUE",
  "taskId" : "TASKID_VALUE",
  "ownerSiteId" : "OWNERSITEID_VALUE",
  "userAssignedId" : "USERASSIGNEDID_VALUE",
  "userAssignedName" : "USERASSIGNEDNAME_VALUE",
  "userModifiedId" : "USERMODIFIEDID_VALUE",
  "userModifiedName" : "USERMODIFIEDNAME_VALUE",
  "startDate" : "2013-05-23T19:30:13EDT",
  "sysComments" : "SYSCOMMENTS_VALUE",
  "resolution" : "RESOLUTION_VALUE",
  "taskIdNumber" : 0,
  "localeCode" : "LOCALECODE_VALUE",
  "links" : [ {
    "rel" : "canonical",
    "href" : "http://localhost:7002/km/api/{version}/{resourceURI}",
    "mediaType" : "application/json, application/xml",
    "templated" : true,
    "method" : "GET",
    "profile" : "http://localhost:7002/km/api/{version}/metadata-catalog/{resourceName}"
  } ]
}
Back to Top