Skip to main content

Ticket PDF

If you wish to use your own ticket PDF instead of the one we provide, you must provide the URL of it in the ticket inside props.urls.qrTicketPdfUrl.

Additionally, to use this functionality, you must inform your Account Manager.

Integration Examples

To create tickets with the PDF URL, you should use the following endpoint:

Here is an example of how to notify Menta about the issuance of a ticket with the PDF URL, using fictitious data, with cURL.
curl -X POST 'https://api.mentatickets.com/v1/tickets'
-H 'Authorization: YOUR_API_KEY'
-H 'Content-Type: application/json'
--data-raw '[
{
"ticketOptionId": "0001",
"showId": "4726",
"externalReferenceEventId": "the-lion-king-broadway",
"buyer": "buyer@emaildomain.com",
"ticketId": "111",
"ticketAccess": {
"type": "OTHER",
"locator": "D02KWWKS029F"
},
"props": {
"urls": {
"qrTicketPdfUrl": "https://yourplatform.com/tickets/qr-pdf/111"
}
}
}
]'
JSON Response
{
"status": 200,
"data": [{TICKETDATA}],
"errors": null
}

For more detailed information on Ticket and QR pdf, refer to the ticket data section.