GET

Get Order Summary


Retrieves a summary of total ticket sales.

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 Orders
Read Basic Events Order Info
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/orders/summary

Query Params
eventIdstring

Event ID.

Response Object
salesArray <TicketSales>

Ticket sales grouped by currency.

Get Order Summary Example 1
Request
cURL
curl -X GET 'https://api.wix.com/events/v1/orders/summary?eventId=619d52c0-c93b-4155-a55c-108048f20b3f' \ -H 'Authorization: <AUTH TOKEN>'
Response
JSON
{ "sales": [ { "total": { "amount": "14.00", "currency": "EUR" }, "totalOrders": 4, "totalTickets": 8, "revenue": { "amount": "14.00", "currency": "EUR" } } ] }
Errors

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

Did this help?