Retrieves deleted-item tombstones, optionally filtered via OData query options (typically by modified_dateutc for incremental sync). Server-driven paging defaults to 200 items per page.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of tombstones.

sysDeletedItems
NameDescriptionTypeAdditional information
id

Primary key of this tombstone record (not the id of the deleted record itself).

globally unique identifier
endpointName

Name of the API endpoint/entity type (e.g. "Job", "Article") that the deleted record belonged to.

string
modified_dateutc

Readonly system field: UTC date and time the deletion was recorded.

date

Response Formats

application/json, text/json

Sample:
{
  "id": "255af621-0f34-40f2-8494-a71bece6b3ee",
  "endpointName": "sample string 2",
  "modified_dateutc": "2026-09-17T10:12:15.7776508+00:00"
}

application/xml, text/xml

Sample:
<sysDeletedItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <endpointName>sample string 2</endpointName>
  <id>255af621-0f34-40f2-8494-a71bece6b3ee</id>
  <modified_dateutc>2026-09-17T10:12:15.777Z</modified_dateutc>
</sysDeletedItems>