1013: Get changed since
Return entities for a search session specified by a token
identifier.The search session is initialized by calling endpoint 1012: Create changed since session, which returns a token
identifier.
The session is created asynchronously, so may not immediately be ready to access. When this endpoint is called for an incomplete session, a 202
response is returned instead of the 200
response which indicates a successful fetch. In this situation it is recommended to wait a few seconds, and try again.
The search session has an expiry of 1 hour. Any request to this endpoint for the session will refresh the expiry, but after an hour of inactivity the session may be deleted.
This endpoint cannot be used when Data Isolation is enabled
Endpoint ID: | 1013 | ||||||||||
Method: | POST | ||||||||||
URL: | /entity/changes/token/{token} | ||||||||||
token | The session token to fetch data for | ||||||||||
Request body: | JSON data with search settings
{} { "offset": 0, "limit": 3 } | ||||||||||
| JSON data with an array of { "entities": [ { "id": 12345, "updatedDate": "2015-06-03T12:55:02" }, { "id": 12346, "updatedDate": "2015-06-03T13:10:47" }, { "id": 12347, "updatedDate": "2015-06-04T01:02:55" } ], "paging": { "offset": 0, "count": 3, "more": true } } | ||||||||||
Status codes: | 200 | One or more entities were found | |||||||||
202 | The search session is not yet complete - please wait a few seconds and try again | ||||||||||
404 | The search session contains no entities, or contains no entities for the given Additionally the following sub code may be returned:
|