getUpdated
Purpose
Retrieves an array of record IDs of the specified object type that were either created or updated within the given date/time interval. This method is not available for external objects, including those mapped to OpenEdge service objects.
HTTP Method
GET
URL
https://app.infiniteblue.com/rest/api/getUpdatedURL Parameters
sessionId
The session ID obtained from the body of the response when calling login.
objName
The object integration name.
from
Beginning of date/time interval in ISO 8601 format.
till
End of date/time interval in ISO 8601 format.
output
Optional parameter specifying the output format, one of:
Permissions Required
View permission for the requested object type.
Response
IDs of all records found in the search, returned as an array of longs
Example
Output example in XML:
<resp status="ok"> <ids> <id>314452</id> <id>128003</id> </ids> </resp>
Output example in JSON:
[ 314452, 128003 ]