logo
IntegrationsList CRM sync jobs

List CRM sync jobs

Returns a paginated list of all CRM sync jobs (pull and push) for the workspace, sorted by most recent first.

curl -X GET "https://api.sendkit.ai/v1/integrations/crm/jobs?page=25&limit=42" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "jobs": [
      {
        "id": "69c10b1b1b48d8364dc10845",
        "crmType": "airtable",
        "jobType": "push",
        "status": "pending",
        "entityType": "people",
        "totalRecords": 0,
        "processedRecords": 0,
        "failedRecords": 0,
        "progress": 0,
        "importedCount": 0,
        "pushedCount": 1,
        "errors": [],
        "errorsCount": 0,
        "createdAt": "2026-03-23T09:42:51.508Z",
        "completedAt": null
      }
    ],
    "activeCount": 1,
    "hasActiveJobs": true
  }
}
GET
/v1/integrations/crm/jobs
GET
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
query
limitinteger

Items per page (default 25, max 100)

Min: 1 • Max: 100
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

Query Parameters

limitinteger

Items per page (default 25, max 100)

Responses

successboolean
dataobject