Bulk Order Actions
Get Bulk Order Response
Get the response from an asynchronous bulk order operation.
GET
Path Parameters
The ID of the bulk operation
Example:
"act_1234567890"
Response
200
application/json
OK
Bulk Operation Response for Orders.
The status of the bulk operation
Available options:
QUEUED
, IN_PROGRESS
, SUCCESS
, FAILED
, CANCELLED
, SKIPPED
, SCHEDULED
The summary of the bulk operation
The results of the bulk operation
Example:
[
{
"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"
}
]