Skip to main content
GET
/
v1
/
bulk_actions
List
curl --request GET \
  --url https://{defaultHost}/v1/bulk_actions \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/bulk_actions"
  },
  "data": [
    {
      "id": "b9bd7bbf-2785-40c2-ac66-0ea549ff9338",
      "object": "bulk_action",
      "action_type": "delete_products",
      "record_ids": [
        "83e6076c-9508-4c24-a8cf-405ca128a0e7",
        "51d76e00-c104-4e37-8835-e49abac7a0ab",
        "c0c3eb31-aa3f-4281-b48d-067bad64270e",
        "de07a8e3-dbfc-4871-88f3-0dd4bb34e149",
        "71345243-388b-4684-8693-649c86dc3359"
      ],
      "skipped_record_ids": [],
      "status": "pending",
      "created_at": 1776176512,
      "updated_at": 1776176512
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

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.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.