Skip to main content

Update extra data for multiple objects

Rate limits

This endpoint belongs to the priority lane.

Updates the extra data for a bunch of objects in an event, without changing the object status.

POST https://api-{region}.seatsio.net/events/{eventKey}/actions/update-extra-data
{
"extraData": {
"A-1": {
"userId": "123"
},
"A-2": {
"userId": "456"
}
}
}

extraData is a mapping between object labels and extra data objects. The extra data objects must be valid JSON objects.

Example request

curl https://api-{region}.seatsio.net/events/event34/actions/update-extra-data \
-u aSecretKey: -X POST -H 'Content-Type: application/json' -d '{"extraData": {"A-1": {"userId": "123"}, "A-2": {"userId": "456"}}}'

Response

204 - No Content, or 404 when one or more objects don't exist on the chart.