Get the response from an asynchronous bulk order operation.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the bulk operation
"act_1234567890"
OK
Bulk Operation Response for Orders.
The status of the bulk operation
QUEUED, IN_PROGRESS, SUCCESS, FAILED, CANCELLED, SKIPPED, SCHEDULED "SUCCESS"
The summary of the bulk operation
{
"failedOperations": 1,
"successfulOperations": 4,
"totalOperations": 5
}The results of the bulk operation
[
{
"action": "upsert",
"errorMessage": null,
"id": "ord_1234567890",
"status": "success"
},
{
"action": "delete",
"errorMessage": null,
"id": "ord_0987654321",
"status": "success"
},
{
"action": "delete",
"errorMessage": "order with id or external_id 'ord_fake_does_not_exist' does not exist, error_code=MISSING_RESOURCE",
"id": "ord_fake_does_not_exist",
"status": "error"
}
]