Skip to main content
Weavr API
Manage

Get bulk process

GET/bulks/{bulk_id}

Retrieves the bulk process identified by the bulk_id parameter.

Use this to poll a process after executing it, since execution is asynchronous. status reports where the run is: SUBMITTED before execution, RUNNING or PAUSED during it, and COMPLETED, PARTIALLY_COMPLETED, FAILED, or CANCELLED once it settles. The response also carries the counts of submitted, successful, and failed operations.

When a run ends PARTIALLY_COMPLETED or FAILED, use List bulk operations filtered on status to find the individual operations that failed.

Request

Available on
SandboxProduction

Path parameters

Responses

200OK

Success

Headers
Body
application/json
{}
BulkProcessDetailsBulkProcessDetails · object · 8 fields
Response example
{  "bulkId": "123456789",  "status": "COMPLETED",  "submittedItemsCount": 100,  "executionStart": 1786118400000,  "executionFinish": 1786118405000,  "operation": "/multi/managed_cards",  "mode": {},  "operationStatusCounts": [    {      "status": "SUBMITTED",      "count": 25    }  ]}