v33

latestOpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-05-28103497709.6 KB
Customers

Get bulk import job status

Retrieve the current status and results of a bulk customer import job. This endpoint can be used to track the progress of both CSV uploads.

The response includes:

  • Overall job status
  • Progress statistics
  • Detailed error information for failed entries
  • Completion timestamp when finished
get/customers/bulk/jobs/{jobId}

Path parameters

jobIdstring required

ID of the bulk import job to retrieve

Response

Job status retrieved successfully

idstring required

Unique identifier for the bulk import job

status'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' required

Current status of the job

completedAtstring date-time

Timestamp when the job completed (only present for COMPLETED or FAILED status)

Example response

{
  "id": "Job:019542f5-b3e7-1d02-0000-000000000006",
  "status": "PROCESSING",
  "progress": {
    "total": 5000,
    "processed": 2500,
    "successful": 2450,
    "failed": 50
  },
  "errors": [
    {
      "correlationId": "biz456"
    }
  ],
  "completedAt": "2025-08-15T14:32:00Z"
}