Sales
Create a sale
Creates a new ticket sale for an event. The event must have tickets enabled and belong to a Pro schedule. Tickets can be referenced by encoded ticket ID or by ticket type name. Sales are created with 'unpaid' status unless the total is zero (free tickets), in which case they are automatically marked as 'paid'.
post/sales
Request body
Example request
{
"tickets": {
"General Admission": 2,
"VIP": 1
}
}Response
Sale created successfully
Example response
{
"meta": {
"message": "Sale created successfully"
}
}