Ticket
A Ticket describes a ticket that has been issued to a user. To provide all the benefits of menta tech, it is essential that you provide the following information for each ticket you issue:
All fields are required.
Ticket Entity
| Field | Data Type | Description | Example |
|---|---|---|---|
| ticketOptionId | String | ID of the ticket type used in your platform. | "0001" |
| showId | String | ID of the Show of the Event (if there are multiple) used in your platform. | "apr4-2pm" |
| externalReferenceEventId | String | ID of the Event used in your platform. | "the-lion-king-broadway" |
| buyer | String | Email of the original ticket purchaser. | "buyer@emaildomain.com" |
| ticketId | String | ID of the Ticket. Must be unique across your platform. | "000000041028" |
| ticketAccess | TicketAccess | Information about the ticket access locator. | See table below |
| props | TicketProps | Additional properties of the ticket. | See table below |
| primarySaleBuyerData | PrimarySaleBuyerData | Information about the person who purchased the ticket in the primary sale. | See table below |
TicketAccess Entity
| Field | Data Type | Description | Example |
|---|---|---|---|
| type | Enum (URL or API) | Specifies the type of resource for obtaining the QR of the Ticket | "URL" |
| locator | String | URL of the resource where the QR Ticket is located | "https://platform.com/images/qr-123.png" |
Entity PrimarySaleBuyerData
| Field | Data Type | Description | Example |
|---|---|---|---|
| firstName | String | First name of the buyer | "Juan" |
| lastName | String | Last name of the buyer | "Pérez" |
| identificationType | String | Identification type of the buyer | "DNI" |
| identificationNumber | String | Identification number of the buyer | "12345678" |
| phoneNumber | String | Phone number of the buyer | "+541234567890" |
TicketProps Entity
| Field | Data Type | Description | Example |
|---|---|---|---|
| seating | Seating | Detailed information about the seat location. | See table below |
| urls | Urls | Relative URLs to the ticket | See table below |
Seating Entity
| Field | Data Type | Description | Example |
|---|---|---|---|
| row | String | Row where the seat is located. | "A" |
| seat | String | Seat number. | "12" |
| section | String | Section where the seat is located. | "VIP" |
| door | String | Corresponding entry door. | "North" |
| image | String | URL of the image showing the seat location. | "https://example.com/seating-image.png" |
Urls Entity
| Field | Data Type | Description | Example |
|---|---|---|---|
| qrTicketPdfUrl | String | URL of the ticket PDF | https://yourplatform.com/tickets/qr-pdf/111 |