Skip to main content
GET
/
v1
/
batch_operations
List
curl --request GET \
  --url https://{defaultHost}/v1/batch_operations \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 2,
    "limit": 20,
    "page": 1,
    "url": "/v1/batch_operations"
  },
  "data": [
    {
      "id": "c4169f09-fa94-44a9-8089-f55a3ec6e8cd",
      "object": "batch_operation",
      "body": null,
      "http_method": "GET",
      "path": "/v1/products",
      "query_params": null,
      "response_body": null,
      "response_status": null,
      "status": "pending",
      "batch": "9bc806f7-1abe-4dca-9700-d1258e534f5d",
      "created_at": 1780925353,
      "updated_at": 1780925353
    },
    {
      "id": "c07c1158-7bb1-4b84-a6e3-0e90e61b8706",
      "object": "batch_operation",
      "body": null,
      "http_method": "GET",
      "path": "/v1/products",
      "query_params": null,
      "response_body": null,
      "response_status": null,
      "status": "pending",
      "batch": "9bc806f7-1abe-4dca-9700-d1258e534f5d",
      "created_at": 1780925353,
      "updated_at": 1780925353
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

batch_ids[]
string[]

Only return objects that belong to the given batches.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

status[]
string[]

Only return objects with the given status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.