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
Field | Data Type | Example | Description | Required |
---|---|---|---|---|
title | String | "Friday with Drake and Miley" | Title of the show | Yes |
showId | String | "drake-miley-123" | ID of the Show used | Yes |
description | String | “This Friday, Drake and Miley Cyrus will join on stage.” | Description of the show | Yes |
date | String | "2023-01-10T23:00:00.000Z" | Start date and time of the performance | Yes |
primarySalesUrl | String | https://yourplatform.com/event/the-lion-king-broadway/show/4726 | The URL for the primary sale of tickets for the show | No |
ticketOptions | Array[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",
"primarySalesUrl": "https://yourplatform.com/event/the-lion-king-broadway/show/472",
"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"
}
]
}