Get views

get

/km/api/v1/contentRecommendations/{id}/views

This method returns a list of View objects associated with the ContentRecommendation object having the specified ID parameter.

This resource supports the orderBy request parameter, which allows you to sort the returned list of ContentRecommendation objects.

You can use following values with the orderBy parameter:

  • recordId
  • referenceKey
  • name
  • dateAdded
  • dateModified

Example URIs

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/contentRecommendations/{id}/views

    This method returns a list of View objects associated with the specified ContentRecommendation object. By default, the View objects are sorted according to the referenceKey parameter in ascending order.

  • http://<IM_REST_API_HOST>/km/api/latest/contentRecommendations/{id}/views?orderBy=referenceKey:desc

    This method returns a list of View objects associated with the specified ContentRecommendation object. The View objects are sorted according to the referenceKey parameter in descending order.

Request

Path Parameters
  • The unique identifier of the ContentRecommendation object
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ResultList ViewKey
Type: object
Title: ResultList ViewKey
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 ViewKey-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 : ViewKey
Match All
Show Source
Nested Schema : ViewKey-allOf[1]
Type: object
Show Source
Back to Top

Examples

The following example shows how to find all view objects associated with the Content Recommendation object that has the specified ID parameter 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/contentRecommendations/{id}/views"

Example of Request Header

The following shows an example of the request header.

Content-Type: -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.

{
  "items": [
    {
      "recordId": "048016503b35e6fc0144e01818e2006d02",
      "referenceKey": "ANALYTICS",
      "name": "Analytics",
      "links": [
        {
          "rel": "parent",
          "href": "http://<IM_REST_API_HOST>/km/api/latest/views/048016503b35e6fc0144e01818e2007b58",
          "mediaType": "application/json, application/xml",
          "method": "GET"
        },
        {
          "rel": "canonical",
          "href": "http://<IM_REST_API_HOST>/km/api/latest/views/048016503b35e6fc0144e01818e2006d02",
          "mediaType": "application/json, application/xml",
          "method": "GET"
        },
        {
          "rel": "collection",
          "href": "http://<IM_REST_API_HOST>/km/api/latest/views",
          "mediaType": "application/json, application/xml",
          "method": "GET",
          "profile": "http://<IM_REST_API_HOST>/km/api/latest/metadata-catalog/views"
        }
      ]
    },
  ],
  "hasMore": false,
  "limit": 20,
  "offset": 0,
  "links": [
    {
      "rel": "canonical",
      "href": "http://<IM_REST_API_HOST>/km/api/latest/contentRecommendations/6AD80F8157A34300BC48843F63844FF3/views?limit=20&offset=0&_=1460712550684",
      "mediaType": "application/json, application/xml",
      "method": "GET"
    }
  ],
  "count": 1
}
Back to Top