Events
Create an event
Creates a new event under the specified schedule. Requires a Pro plan. The authenticated user must be an owner or admin of the schedule. For venue schedules, the venue is automatically set. For talent schedules, the member is automatically set.
post/events/{subdomain}
Path parameters
subdomainstring required
The subdomain identifier of the schedule to create the event under
Request body
Example request
{
"starts_at": "2025-06-15 19:00:00",
"ticket_currency_code": "USD",
"days_of_week": "0101010"
}Response
Event created successfully
Example response
{
"data": {
"days_of_week": "0101010"
},
"meta": {
"message": "Event created successfully"
}
}