Skip to main content
Weavr API
Manage

List bulk operations

GET/bulks/{bulk_id}/operations

Returns the individual operations that make up the bulk process identified by the bulk_id parameter.

Use this to find out what happened inside a run, in particular which operations failed after a process ended PARTIALLY_COMPLETED or FAILED.

Filter with status (SUBMITTED, RUNNING, COMPLETED, FAILED, CANCELLED) to isolate the failures, and with sequence to look up a specific position in the batch. Page through results with offset and limit.

Request

Available on
SandboxProduction

Path parameters

Query parameters

Responses

200OK

Success

Headers
Body
application/json
{}
BulkProcessOperationsPagedBulkProcessOperationsPaged · object · 3 fields
Response example
{  "count": 42,  "operations": [    {      "operationId": "1",      "sequence": 1,      "method": "POST",      "path": "/multi/managed_cards",      "status": {},      "requestPayload": "{\"profileId\":\"10001\",\"friendlyName\":\"Travel card\"}",      "responsePayload": "{\"id\":\"234567890\",\"state\":\"ACTIVE\"}"    }  ],  "responseCount": 10}