GET

Get Ticket


Retrieves a ticket by unique ticket number.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Events - all permissions
Read Events - all read permissions
Manage Guest List
Read Event Tickets and Guest List
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/events/{eventId}/tickets/{ticketNumber}

Path Params
eventIdstringRequired

Event ID.


ticketNumberstringRequired

Unique ticket number.

Query Params
fieldsetArray <string>

Set of fields to return in the response. See Fieldsets.

Response Object
ticketTicket

Ticket.

Get Ticket Example 1
Request
cURL
curl -X GET 'https://www.wixapis.com/events/v1/events/ad18d12e-a6a9-4c17-abfa-6ff119479be2/tickets/FNVL-NIJT-WP021?fieldset=GUEST_DETAILS&fieldset=TICKET_DETAILS' \ -H 'Authorization: <AUTH TOKEN>'
Response
JSON
{ "ticket": { "ticketNumber": "FNVL-NIJT-WP021", "orderNumber": "FNVL-NIJT-WP", "ticketDefinitionId": "d86ffbbd-aa9b-488d-a14b-11752b78e272", "name": "Early Bird", "price": { "amount": "12.34", "currency": "USD" }, "free": false, "policy": "This is your event ticket. Ticket holders must present their tickets on entry.", "orderStatus": "PAID", "orderArchived": false, "orderFullName": "John Doe", "guestDetails": { "guestAssigned": false, "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "contactId": "3ef81e9f-106e-408d-a3ee-3df60838acc6" }, "archived": false, "anonymized": false, "checkInUrl": "https://www.wixevents.com/check-in/FNVL-NIJT-WP021,ad18d12e-a6a9-4c17-abfa-6ff119479be2", "ticketPdfUrl": "https://apps.wix.com/events/doc/tickets/Ticket.pdf?request=<TOKEN>" } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?