Checks, for a batch of synced tables, whether new data is available since the client's last sync. Requests are processed concurrently (4 at a time) and the whole call is bounded by the request timeout so it can return partial results rather than fail outright; unrecognized controller names are reported as status_is_unknown and treated as "data available" to be safe.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the updated controller_data_status list.

controller_data_status
NameDescriptionTypeAdditional 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

Sample:
{
  "id": "8d471cb0-52cf-4d38-b380-cffe34034c7b",
  "controller_name": "sample string 2",
  "company_id": "e29535c4-9f1c-4566-9219-d26268ac3e42",
  "target_id": "836df1a7-b247-45bd-91e2-cad63a0029bd",
  "data_available": true,
  "status_is_unknown": true,
  "need_to_update_modified_dateutc": true,
  "time": 8,
  "modified_dateutc_received": "2026-09-16T10:11:26.3955182+00:00"
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.