Find a list of all dialogportal™ entities that have been modified since a given date.
Endpoint ID: | 1012 | ||||||||||||||||
Method: | POST | ||||||||||||||||
URL: | /user/changes/{contract-id} | ||||||||||||||||
contract-id | Identifies the type of entities to search for. If omitted, the default contract entity type is returned. | ||||||||||||||||
Request body: | JSON data with search settings
{ "fromDate": "2015-01-01T01:00:00Z" } { "fromDate": "2015-01-01T01:00:00Z", "offset": 0, "limit": 5 } | ||||||||||||||||
Response body: | JSON data with an array of the found entities. The result will also contain an object with properties that specify number of entities returned, the offset and whether there are more entities than the ones returned.
{ "entities": [ 12345, 12346, 12347, 12348, 12349 ], "paging": { "offset": 0, "count": 5, "more": true } } | ||||||||||||||||
Status codes: | 200 | One or more entities were found | |||||||||||||||
404 | No updated entities were found |