Skip to main content
GET
/
v1
/
bundle_items
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/bundle_items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "52b265ea-bb02-4e2e-b44f-b54b8fbf652b",
  "object": "bundle_item",
  "basis_amount": null,
  "quantity": 1,
  "current_version": true,
  "metadata": {},
  "position": 0,
  "bundle_product": "baa793bc-e9b7-4fc1-8576-19f1b0239efa",
  "component_product": "8ee45931-cf26-4d1b-8d49-400724767b30",
  "created_at": 1780925360,
  "updated_at": 1780925360
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

basis_amount
integer | null

Optional relative weighting input (in cents) for this component. Nil uses default weighting by quantity.

quantity
integer

The quantity of this component in the bundle.

position
integer | null

The position of this item within the bundle.

metadata
object

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

bundle_product

Expandable – The associated bundle product ID.

component_product

Expandable – The associated component product ID.

current_version
boolean

Whether the returned version is the current one on the bundle item.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.