Skip to main content

Add events to partial season

Rate limits

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

This call adds events to a partial season. The events must be part of the top-level season.

GET https://api-{region}.seatsio.net/seasons/{topLevelSeasonKey}/partial-seasons/{partialSeasonKey}/actions/add-events

Request

{
"eventKeys": ["event1", "event2"]
}
curl https://api-{region}.seatsio.net/seasons/aTopLevelSeason/partial-seasons/aPartialSeason/actions/add-events \
-u aSecretKey: -X POST -H 'Content-Type: application/json' -d '{"eventKeys": ["event1", "event2"]}'

Response

{
"id": 169,
"eventKey": "aPartialSeason",
"tableBookingConfig": {
"mode": "CUSTOM",
"tables": { "T1": "BY_TABLE", "T2": "BY_SEAT" }
},
"supportsBestAvailable": true,
"createdOn": "2017-05-05T10:58:44.715Z",
"isSeason": true,
"isTopLevelSeason": false,
"isPartialSeason": true,
"isEventInSeason": false,
"topLevelSeasonKey": "aSeason",
"events": [
{
"id": 170,
"key": "event1",
...
},
...
]
}