Events
Update an event
Updates an existing event. Requires a Pro plan. Supports partial updates - only the fields provided will be changed. Existing tickets, event parts, and recurring configuration are preserved if not explicitly provided.
put/events/{id}
Path parameters
idstring required
The encoded ID of the event
Request body
Example request
{
"starts_at": "2025-06-15 19:00:00",
"ticket_currency_code": "USD",
"days_of_week": "0101010"
}Response
Event updated successfully
Example response
{
"data": {
"days_of_week": "0101010"
},
"meta": {
"message": "Event updated successfully"
}
}