Saltar al contenido principal

Ticket Option

A Ticket Option describes a purchase option or category of a ticket for an event.

Each Ticket Option must detail the type of access it grants to the user and why a certain amount of money is required to access it.

It is crucial to provide detailed information about the type of access being offered, as the user needs to decide if the access provided is what they actually want.

Below are the properties that a Ticket Option should have:

FieldData TypeExampleDescriptionRequired
titleString"VIP Pass - Meet and Greet"Name of the ticket typeYes
descriptionString“Access to a preferred area with a meet and greet with all the artists”Description of the ticket typeYes
ticketIdString"03"ID of the ticket type - Shows how to uniquely identify this option. Use the identifier from your systems.Yes
priceNumber250Price expressed in local currency.Yes
currencyStringUSDISO currency codeYes

Example of a Ticket Option

{
"title": "Premium Seat",
"ticketId": "0002",
"description": "Located at the front of the theater, with an excellent view and premium sound.",
"price": 13800,
"currency": "ARS"
}