For each entry in the posted list of (controller name, last-known modified_dateutc), checks whether that controller has newer data for the given job, so a sync client can decide which controllers to re-fetch. Controller names not recognized in the internal switch are reported as status_is_unknown and treated as available. Bounded by the request timeout: any entries not checked before the internal cancellation deadline are returned with data_available = false.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the same entries with data_available (and status_is_unknown) filled in.
controller_data_status| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| controller_name |
Name of the API controller/entity endpoint (e.g. "Company", "Article") this status applies to. |
string | |
| company_id |
Legacy foreign key of the company this status was scoped to. |
globally unique identifier | |
| target_id |
Foreign key of the target scope (e.g. sales organization) this status applies to. Replaces . |
globally unique identifier | |
| data_available |
Indicates whether data is currently available for this controller/target combination. |
boolean | |
| status_is_unknown |
Indicates that the availability status could not be determined and should be treated as unknown/stale. |
boolean | |
| need_to_update_modified_dateutc |
Indicates that needs to be refreshed on the next update. |
boolean | |
| time |
Duration, in milliseconds, taken to compute or refresh this status. |
integer | |
| modified_dateutc_received |
Readonly system field: UTC timestamp of the most recent modification received for this controller/target. |
date |
Response Formats
application/json, text/json
{
"id": "59b4c90a-8e78-4ef1-8066-2573a32631be",
"controller_name": "sample string 2",
"company_id": "79ab36a3-489e-47c9-a6f0-ba9e3266567d",
"target_id": "1ae35d0a-0cb1-4f01-95b4-9c34f44707e2",
"data_available": true,
"status_is_unknown": true,
"need_to_update_modified_dateutc": true,
"time": 8,
"modified_dateutc_received": "2026-09-16T08:34:52.0712019+00:00"
}
application/xml
Sample not available.
text/xml
Sample not available.