Developers
ReferenceReports

Retrieve the sales summary of an event

Sales summary of an event: completed orders, gross revenue in cents, tickets sold and checked in, per ticket type.

GET
/events/{id}/sales-summary

Sales summary of an event: completed orders, gross revenue in cents, tickets sold and checked in, per ticket type.

Authorization

http
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/events/string/sales-summary"
{  "object": "sales_summary",  "event": "string",  "livemode": true,  "currency": "eur",  "orders": 0,  "revenue": 0,  "tickets_sold": 0,  "tickets_checked_in": 0,  "ticket_types": [    null  ]}