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": "2656865c-df1e-40b5-b4fb-832d63c5902d",
      "object": "bulk_action",
      "action_type": "delete_products",
      "record_ids": [
        "ce7412fa-d17d-4fdf-bbe1-c28bc95e1e1f",
        "f4c63d94-6722-44d3-879e-f09daad558bd",
        "38024b10-95fd-4fbe-adb8-bebfd0f5facb",
        "a0723108-0580-4cc0-bcbb-5dc4db0e90e3",
        "2ea1444f-440e-4ca0-a9d8-97dedcbb6af4"
      ],
      "skipped_record_ids": [],
      "status": "pending",
      "created_at": 1772112915,
      "updated_at": 1772112915
    }
  ]
}

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.