Get data list items

get

/km/api/v1/dataLists/{id}/dataListItems

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

This resource supports the orderBy request parameter. You can use this parameter along with the HTTP service request to sort the returned list.

The following values can be used with the orderBy parameter:

  • dateAdded
  • dateModified
  • defaultValue
  • recordId
  • sortOrder

Example URIs:

The example URIs for this method are as follows:

  • http://<IM_REST_API_HOST>/km/api/latest/dataLists/{id}/dataListItems

    The method returns a list of DataListItem objects associated with the DataList object having the specified ID parameter sorted by date added in ascending order.

  • http://<IM_REST_API_HOST>/km/api/latest/dataLists/{id}/dataListItems?orderBy=dateAdded:desc

    The method returns a list of DataListItem objects associated with the DataList object having the specified ID parameter sorted by date added in descending order.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

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

Examples

The following example shows how to find all Data List Item objects associated with the Data List object that has the specified ID parameter by submitting a get request on the REST resource using cURL.

cURL Command

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

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.

{
  "items" : [ {
    "recordId": "0177024173e1fbfc01602d8296ca007fe8",
    "value": "Value1",
    "name": "Name1",
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET"
    } ]
  }, {
    "recordId": "0177024173e1fbfc01602d8296ca007fe9",
    "value": "Value2",
    "name": "Name2",
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET"
    } ]
  }, {
    "recordId": "0177024173e1fbfc01602d8296ca007fea",
    "value": "Value3",
    "name": "Name3",
    "links" : [ {
      "rel" : "canonical",
      "href" : "http://<IM_REST_API_HOST>/km/api/{version}/{resourceURI}",
      "mediaType" : "application/json, application/xml",
      "templated" : true,
      "method" : "GET"
    } ]
  } ],
  "hasMore" : false,
  "limit" : 20,
  "offset" : 0,
  "links" : [ {
    "rel" : "canonical",
    "href" : "http://<IM_REST_API_HOST>/km/api/{version}/dataListItems?limit=20&offset=0",
    "mediaType" : "application/json, application/xml",
    "method" : "GET"
  } ],
  "count" : 3
}
Back to Top