Skip to main content

Create events in season

Rate limits

This endpoint does not belong to the priority lane. Do not use it within your ticket sales flow.

This call creates events and adds them to the season.

If objects have been booked for the season, they're unavailable on the newly created events as well.

GET https://api-{region}.seatsio.net/seasons/{seasonKey}/actions/create-events

Request

// with event keys to create (those events should not yet exist)
{
"eventKeys": ["event1", "event2"]
}

// with number of events
{
"numberOfEvents": 2
}
curl https://api-{region}.seatsio.net/seasons/aSeason/actions/create-events \
-u aSecretKey: -X POST -H 'Content-Type: application/json' -d '{"numberOfEvents": 2}'

Response

{
"events": [
{
"id": 171,
"key": "event2",
...
},
{
"id": 170,
"key": "event1",
...
}
]
}