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": "aa646524-ac5f-4b61-9ab4-a1bc9642a242",
      "object": "bulk_action",
      "action_type": "delete_products",
      "record_ids": [
        "ae967edd-d6b3-4832-8548-dfdd1c351927",
        "a5d8dfd7-dffb-4071-8245-56531fd29c59",
        "e71afd57-5d31-472c-8b33-14af7e2a3c2d",
        "3f2fdeb7-fbc7-4c1f-9354-c90d1b1fb7c8",
        "cec60c3d-1b66-47ba-a26a-afff7f237283"
      ],
      "skipped_record_ids": [],
      "status": "pending",
      "created_at": 1780925355,
      "updated_at": 1780925355
    }
  ]
}

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.