For each entry in the posted list of (controller name, last-known modified_dateutc), checks whether that controller has newer data for the given company, 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.

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
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": "4da7eb85-a3c5-45ed-a444-6b9a3b1ecbe4",
  "controller_name": "sample string 2",
  "company_id": "1b73dc83-e82b-4d97-ba8a-769fc2016062",
  "target_id": "f9c6a4d7-1d9b-4f17-bbca-71d41d8f068c",
  "data_available": true,
  "status_is_unknown": true,
  "need_to_update_modified_dateutc": true,
  "time": 8,
  "modified_dateutc_received": "2026-09-16T11:03:49.6421959+00:00"
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.