Skip to main content

Update a bundle

POST 

https://api.tickettailor.com/v1/event_series/:event_series_id/bundles/:bundle_id

Update existing bundle

Request

Path Parameters

    event_series_id stringrequired

    The unique identifier for the event series

    bundle_id stringrequired

    The unique identifier for the bundle

Body

    access_codestring

    Code to access a bundle

    Example: secret_code_123
    booking_feeinteger

    Optional booking fee which is charged per bundle to the customer and the funds are paid to you. We would recommend charging no more than 10% of the bundle price.

    Example: 155
    descriptionstring

    Bundle description

    Example: This is a family bundle
    namestring

    Bundle name

    Example: Family bundle
    priceinteger

    Cost of the bundle

    Example: 600
    product_ids object

    An array of associated product IDs and quantities

    property name*
    product_idstring
    quantityinteger
    status

    Bundle status

    Possible values: [ADMIN_ONLY, HIDDEN, LOCKED, SOLD_OUT, ON_SALE, UNAVAILABLE]

    Example: ON_SALE
    ticket_type_ids object

    An array of associated ticket type IDs and quantities

    property name*
    ticket_type_idstring
    quantityinteger

Responses

Successfully updated the bundle

Schema
    objectstring
    idstring
    access_codestringnullable

    Code to access a bundle

    booking_feeinteger

    Booking fee in cents

    descriptionstring

    Bundle description

    namestring

    Bundle name

    priceinteger

    Price in cents

    products object[]

    Array of associated products

  • Array [
  • idstring

    A unique product identifier

    quantityinteger

    Product quantity

  • ]
  • statusstring

    Bundle status

    Possible values: [HIDDEN, UNAVAILABLE, ON_SALE, SOLD_OUT]

    ticket_types object[]

    Array of associated ticket types

  • Array [
  • idstring

    A unique ticket type identifier

    quantityinteger

    Ticket type quantity

  • ]

Authorization: http

name: BasicAuthtype: httpdescription: Use base64 encoded api key created in Ticket Tailor dashboard.
scheme: basic
curl -L -X POST 'https://api.tickettailor.com/v1/event_series/:event_series_id/bundles/:bundle_id' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json' \
-H 'Authorization: Basic PHVzZXJuYW1lPjo8cGFzc3dvcmQ+'
Request Collapse all
Base URL
https://api.tickettailor.com
Auth
Parameters
— pathrequired
— pathrequired
Body