Skip to main content

Show

The Show entity allows a single event to have multiple performances.

ATTENTION

Even if multiple performances are not required, the use of the Show entity is mandatory, as it contains the performance information. You must create as many Shows as there are performances in an event. If the event has only one performance, you should create just one Show.

Attributes

FieldData TypeExampleDescriptionRequired
titleString"Friday with Drake and Miley"Title of the showYes
showIdString"drake-miley-123"ID of the Show usedYes
descriptionString“This Friday, Drake and Miley Cyrus will join on stage.”Description of the showYes
dateString"2023-01-10T23:00:00.000Z"Start date and time of the performanceYes
ticketOptionsArray[TicketOption]Available ticket options for purchase for that performance.Yes
Ticket Option

A Ticket Option describes a purchase option or category of a ticket. Learn more about Ticket Options

Example of a Show

{
"title": "Friday with Drake and Miley",
"images": [
{
"url": "https://storage.googleapis.com/default_mentatickets-core/dd127bc9-1079-4bbc-9bab-c87acd27edb2_SOURCE.webp",
"kind": "main"
}
],
"showId": "drake-miley-123",
"date": "2022-04-02T14:00:00.000-04:00",
"ticketOptions": [
{
"title": "Standard Seat",
"ticketId": "0001",
"description": "Good view and sound. Located 40 to 60 meters from the stage.",
"price": 5500,
"currency": "ARS"
},
{
"title": "Premium Seat",
"ticketId": "0002",
"description": "Located at the front of the theater, with an excellent view and premium sound.",
"price": 13800,
"currency": "ARS"
}
]
}