latestOpenAPI 3.1.12026-08-108026304.2 KB

7b222e8ec91c

Bundles

Create a bundle

For the given event series ID, create a bundle

post/v1/event_series/{event_series_id}/bundles

Path parameters

event_series_idstring required

The unique identifier for the event series

Response

Successfully created a bundle

objectstring
idstring
access_codestring nullable

Code to access a bundle

booking_feeinteger

Booking fee in cents

descriptionstring

Bundle description

group_idstring nullable

Bundle group ID

namestring

Bundle name

priceinteger

Price in cents

status'HIDDEN' | 'UNAVAILABLE' | 'ON_SALE' | 'SOLD_OUT'

Bundle status

Example response

{
  "object": "bundle",
  "id": "bu_230626",
  "access_code": "secret_code_123",
  "booking_fee": 200,
  "description": "This is a bundle",
  "group_id": "tg_1",
  "name": "Family bundle",
  "price": 600,
  "products": [
    {
      "id": "pr_1",
      "quantity": 1
    },
    {
      "id": "pr_123",
      "quantity": 12
    }
  ],
  "status": "ON_SALE",
  "ticket_types": [
    {
      "id": "tt_6",
      "quantity": 4
    }
  ]
}