For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
ContactLearn More
GuidesReferenceSamplesLicenseChangelog
GuidesReferenceSamplesLicenseChangelog
  • SDKs
    • Overview
  • REST
      • GETList objects
      • GETList locally-deleted force-distributed objects
      • GETGet object
      • POSTUpload object
      • DELDelete object
      • HEADGet object metadata
  • gRPC
ContactLearn More
RESTObjects

List locally-deleted force-distributed objects

Beta
GET
https://example.developer.anduril.com/api/v1/debug/deleted-objects
GET
/api/v1/debug/deleted-objects
$curl https://example.developer.anduril.com/api/v1/debug/deleted-objects \
> -H "Authorization: Bearer <token>"
1{
2 "deleted_objects": [
3 {
4 "path": "string",
5 "checksum": "string",
6 "deleted_at": "2024-01-15T09:30:00Z"
7 }
8 ],
9 "next_page_token": "string"
10}

Returns paginated records of force-distributed objects deleted on the local node. Useful for operators diagnosing why an object visible on one node is missing on another. Each record identifies the exact (path, checksum) pair suppressed from re-sync by the distribution manager. Node-scoped: each node returns only its own records.

Was this page helpful?
Previous

Get object

Next

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

pageTokenstringOptional
Opaque cursor returned by a prior response to continue paging.
maxPageSizeintegerOptional
Maximum number of records to return in a single response. Server enforces an upper bound.

Response

Successful operation
deleted_objectslist of objects
next_page_tokenstring

Present when more pages are available. Pass back as pageToken.

Errors

400
Bad Request Error
401
Unauthorized Error
500
Internal Server Error