Skip to main content
GET
/
v1
/
sync-jobs
List sync jobs
curl --request GET \
  --url https://api.cuadra.ai/v1/sync-jobs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "syncConfigId": "<string>",
      "status": "<string>",
      "triggeredBy": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "itemsTotal": 123,
      "itemsCompleted": 0,
      "itemsFailed": 0,
      "itemsSkipped": 0,
      "creditsConsumed": 0,
      "bytesProcessed": 0,
      "errorMessage": "<string>",
      "progress": 123
    }
  ],
  "nextCursor": "<string>",
  "hasMore": false
}

Authorizations

Authorization
string
header
required

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

Query Parameters

syncConfigId
string | null

Filter by sync config

status
string | null

Filter by status

limit
integer
default:50

Maximum results

Required range: 1 <= x <= 100

Response

Successful Response

List of sync jobs.

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