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": "444b5da5-0039-4ae8-b7d0-2b492dc1a7c0",
      "object": "bulk_action",
      "action_type": "delete_products",
      "record_ids": [
        "ee7ca944-71af-48c1-a0af-dcd9955eb288",
        "382ef84b-e16d-426e-a2a4-89757f458132",
        "40ad456c-a094-40a5-aebb-059eaad4226c",
        "e4060163-c5e6-40cf-a68c-afdb0a650638",
        "3d159b8b-c041-4a3d-8a8d-bfeba4175bc1"
      ],
      "skipped_record_ids": [],
      "status": "pending",
      "created_at": 1773903528,
      "updated_at": 1773903528
    }
  ]
}

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.