Skip to main content
GET
/
v1
/
sync-jobs
/
{job_id}
/
items
List sync items
curl --request GET \
  --url https://api.cuadra.ai/v1/sync-jobs/{job_id}/items \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "remoteResourceId": "<string>",
      "status": "<string>",
      "remoteResourceName": "<string>",
      "remoteResourceType": "<string>",
      "fileId": "<string>",
      "errorMessage": "<string>",
      "retryCount": 0,
      "processedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>",
  "hasMore": false
}

Authorizations

Authorization
string
header
required

JWT token from Stytch B2B authentication (magic link, SSO, or M2M)

Path Parameters

job_id
string
required

Sync job ID

Query Parameters

status
string | null

Filter by status: failed

limit
integer
default:100

Maximum results

Required range: 1 <= x <= 1000
offset
integer
default:0

Offset for pagination

Required range: x >= 0

Response

Successful Response

List of sync items.

items
SyncItemOut · object[]
required
nextCursor
string | null
hasMore
boolean
default:false