Skip to main content
GET
/
v1
/
bundle_items
List
curl --request GET \
  --url https://{defaultHost}/v1/bundle_items \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/bundle_items"
  },
  "data": [
    {
      "id": "6cec7b87-4d94-4c70-9d7c-bb8427f50357",
      "object": "bundle_item",
      "basis_amount": null,
      "quantity": 1,
      "current_version": true,
      "metadata": {},
      "position": 0,
      "bundle_product": "ad368286-6599-4c7b-a7a9-4863cd10fed3",
      "component_product": "682653ba-e61e-4795-9474-55b2e861d5ea",
      "created_at": 1782485808,
      "updated_at": 1782485808
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

bundle_product_ids[]
string[]

Only return objects that belong to the given bundle products.

component_product_ids[]
string[]

Only return objects that reference the given component products.

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.