Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v2/codelists/{codeListKey}/codevalues/hierarchy/modifications?from=<from>&to=<to>[&pageSize=<page size>&page=<page number> ]
Parameter | Type | Description |
|---|---|---|
codeListKey | String | Internal ID or alias of the code list from which you are retrieving
the code values. |
from | String | Start date and time of the time range, which is inclusive. Time range
must be in the following ISO-8601 format: yyyy-MM-dd'T'HH:mm:ss'Z'.
For example, you might use 2019-12-12T14:04:04Z . |
to | String | End date and time of the time range, which is exclusive. Time range
must be in the following ISO-8601 format: yyyy-MM-dd’T’HH:mm:ss’Z'.
For example, you might use 2019-12-15T14:04:04Z . |
page | Integer | Optional. Page number to display. Default is
0 . |
pageSize | Integer | Optional. Number of records to display per page. Default value is
100 . Maximum value is 10000 . |
Field
| Type
| Description
|
|---|---|---|
page
| Number
| Page from which the response was retrieved. |
pageSize
| Number
| Number of records displayed per page.
|
totalNumberOfElements
| Number
| Total number of records found.
|
numberOfElements
| Number
| Number of records returned in the current page.
|
lastPage
| Boolean
| Indicates whether the current page is the last page in the total result.
|
firstPage
| Boolean
| Indicates whether the current page is the first page in the total result.
|
content
| Array
| Includes the list of code values.
|
lastUpdateDate
| String
| Date when the code value was last updated. |
parentCode
| String
| Code value of the parent node. |
childCode
| String
| Code value of the child node. |
GET https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v2/codelists/country/codevalues/hierarchy/modifications?from=2019-12-11T13:29:55Z&to=2019-12-12T13:29:55Z&page=0&pageSize=100 HTTP/1.1 Accept: application/json Host: localhost:8080
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 261 { "pageSize":1, "page":0, "totalNumberOfElements":1000, "numberOfElements":1, "lastPage":false, "firstPage":true, "content":[ { "lastUpdateDate":"2019-12-11T13:29:55Z", "parentCode":"USA", "childCode":"NY" } ] }