Read endpoint
The Read-endpoint is meant to read a business object defined in the endpoint definition.
The result can contain more than 1 business object.
Example
http://{environment}/sdk/system/{version}/read/{definition.configurationID}
Request
In the request body you can use the filter-tag to select the appropriate business objects.
{
"filter": {
"Syscode": {"eq": 260 }
}
}
Response
The response will be a list of records that apply to the filter.
{
"records": [
{
"City": "Boxmeer",
"SysMutationDateTime": "2021-09-15T15:14:01+02:00",
"Country": "Netherlands",
"Syscode": 260
}
]
}