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": "e6e397a9-2739-48e2-99eb-23f77bd13cda",
      "object": "bulk_action",
      "action_type": "delete_products",
      "record_ids": [
        "8d3ec9fa-ecab-42ec-8a1b-22f6cf8aac9e",
        "a0770b4e-d664-4f59-9e5c-af88d5270bbb",
        "9b591de3-3df2-4437-818d-3cf33944fe23",
        "8215f525-180d-4316-b552-0ee6f0661f8d",
        "0113857e-6fb6-40cc-9e9e-af40ce0fb42d"
      ],
      "skipped_record_ids": [],
      "status": "pending",
      "created_at": 1771429850,
      "updated_at": 1771429850
    }
  ]
}

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.