Bulk import status info

This endpoint returns a specific bulk import's status including the contact IDs of any newly created contacts, and emails of any contacts that failed to be created.

🧠

Add a short delay between creating a bulk import and calling for it's status

If this endpoint is called immediately (less than a second) after a bulk import call, the status in the return may be false (a boolean), because the system has not yet set a status on the batch.

{
  "status":"completed",
  "success":["123","124","125","126"],
  "failure":[
    "invalid.email@invalidDomain", 
    "invalid'[email protected]"
  ]
}

The status field may contain the following values:

StatusDescription
waitingThe import has been received but has not received a uuid and processing has not begun.
claimedThe import batch has received a uuid but processing has not begun.
activeThe import batch is currently being processed.
completedThe import batch has completed processing.
failedThe import batch has failed and can no longer be retried.
interruptedThe import batch was interrupted due to failures and will not be retried.
Language
Credentials
Header
URL