Change object statuses in batch
This endpoint belongs to the priority lane.
This API call allows changing the status for multiple objects in multiple events, in one transaction: either all status changes get applied (in order), or none.
This endpoint can be useful for a number of use cases:
- a shopping basket, in which you allow your customers to select tickets for many events. When the customer confirms the purchase.
- a tool that allows swapping seats (i.e.: releasing some seats, and booking other seats).
- holding seats again after they got booked. Since you cannot hold already booked seats directly, you need to release them first. With this API endpoint, you can release and hold a single seat in one transaction.
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
POST https://api-{region}.seatsio.net/events/actions/change-object-status
POST https://api-{region}.seatsio.net/events/actions/change-object-status?expand=objects
// Booking seats
$seatsioClient->events->changeObjectStatusInBatch([
new StatusChangeRequest("event1", ["A-3", "A-5"], "booked"),
new StatusChangeRequest("event2", ["B-27"], "booked"),
]);
// Holding seats
$seatsioClient->events->changeObjectStatusInBatch([
new StatusChangeRequest("event1", ["A-3", "A-5"], "reservedByToken", "wvXbB9MlHt"),
new StatusChangeRequest("event2", ["B-27"], "reservedByToken", "wvXbB9MlHt"),
]);
// re-holding booked seats
$seatsioClient->events->changeObjectStatusInBatch([
new StatusChangeRequest("myEvent", ["A-3", "A-5"], "free"),
new StatusChangeRequest("myEvent", [
["objectId" => "A-3", "ticketType" => "adult"],
["objectId" => "A-5", "ticketType" => "child"]
], "reservedByToken", "wvXbB9MlHt")
]);
// Booking seats
await Client.Events.ChangeObjectStatusAsync(new[] {
new StatusChangeRequest("event1", new[] {"A-3", "A-5"}, "booked"),
new StatusChangeRequest("event2", new[] {"B-27"}, "booked"),
});
// Holding seats
await Client.Events.ChangeObjectStatusAsync(new[] {
new StatusChangeRequest("event1", new[] {"A-3", "A-5"}, "reservedByToken", "wvXbB9MlHt"),
new StatusChangeRequest("event2", new[] {"B-27"}, "reservedByToken", "wvXbB9MlHt"),
});
// Re-holding booked seats
await Client.Events.ChangeObjectStatusAsync(new[] {
new StatusChangeRequest("myEvent", new[] {"A-3", "A-5"}, "free"),
new StatusChangeRequest("myEvent", new[] {
new ObjectProperties("A-3", "adult"),
new ObjectProperties("A-5", "child")
}, "reservedByToken", "wvXbB9MlHt"),
});
// Booking seats
client.events.changeObjectStatus(List.of(
new StatusChangeRequest("event1", List.of("A-3", "A-5"), "booked"),
new StatusChangeRequest("event2", List.of("B-27"), "booked"),
));
// Holding seats
client.events.changeObjectStatus(List.of(
new StatusChangeRequest("event1", List.of("A-3", "A-5"), "reservedByToken", "wvXbB9MlHt"),
new StatusChangeRequest("event2", List.of("B-27"), "reservedByToken", "wvXbB9MlHt"),
));
// Re-holding booked seats
client.events.changeObjectStatus(List.of(
new StatusChangeRequest("myEvent", List.of("A-3", "A-5"), "free"),
new StatusChangeRequest("myEvent", List.of(
new ObjectProperties("A-3", "adult"),
new ObjectProperties("A-5", "child")
), "reservedByToken", "wvXbB9MlHt"),
));
# Booking seats
client.events.change_object_status_in_batch([
StatusChangeRequest("event1", ["A-3", "A-5"], "booked"),
StatusChangeRequest("event2", ["B-27"], "booked")
])
# Holding seats
client.events.change_object_status_in_batch([
StatusChangeRequest("event1", ["A-3", "A-5"], "reservedByToken", "wvXbB9MlHt"),
StatusChangeRequest("event2", ["B-27"], "reservedByToken", "wvXbB9MlHt")
])
# Re-holding booked seats
client.events.change_object_status_in_batch([
StatusChangeRequest("myEvent", ["A-3", "A-5"], "free"),
StatusChangeRequest("myEvent", [ObjectProperties("A-3", ticket_type="adult"), ObjectProperties("A-5", ticket_type="child")], "reservedByToken", "wvXbB9MlHt")
])
# Booking seats
client.events.change_object_status_in_batch([
{ :event => 'event1', :objects => ['A-3', 'A-5'], :status => 'booked'},
{ :event => 'event2', :objects => ['B-27'], :status => 'booked'}
])
# Holding seats
client.events.change_object_status_in_batch([
{ :event => 'event1', :objects => ['A-3', 'A-5'], :status => 'reservedByToken', :holdToken => 'wvXbB9MlHt'},
{ :event => 'event2', :objects => ['B-27'], :status => 'reservedByToken', :holdToken => 'wvXbB9MlHt'}
])
# Re-holding booked seats
client.events.change_object_status_in_batch([
{ :event => 'myEvent', :objects => ['A-3', 'A-5'], :status => 'free'},
{ :event => 'myEvent', :objects => [
{:objectId => 'A-3', :ticketType => 'adult'},
{:objectId => 'A-5', :ticketType => 'child'}],
:status => 'reservedByToken', :holdToken => 'wvXbB9MlHt'}
])
// Booking seats
client.events.changeObjectStatus([
new StatusChangeRequest('event1', ['A-3', 'A-5'], 'booked'),
new StatusChangeRequest('event2', ['B-27'], 'booked')
]);
// Holding seats
client.events.changeObjectStatus([
new StatusChangeRequest('event1', ['A-3', 'A-5'], 'reservedByToken', 'wvXbB9MlHt'),
new StatusChangeRequest('event2', ['B-27'], 'reservedByToken', 'wvXbB9MlHt')
]);
// Re-holding booked seats
client.events.changeObjectStatus([
new StatusChangeRequest('myEvent', ['A-3', 'A-5'], 'free', 'wvXbB9MlHt'),
new StatusChangeRequest('myEvent', [
{objectId: 'A-3', ticketType: 'adult'},
{objectId: 'A-5', ticketType: 'child'}
], 'reservedByToken', 'wvXbB9MlHt')
]);
// Booking seats
result, err := client.Events.ChangeObjectStatusInBatch(
events.StatusChangeInBatchParams{
Event: "event1",
StatusChanges: events.StatusChanges{
Status: events.BOOKED,
Objects: []events.ObjectProperties{
{ObjectId: "A-3"},
{ObjectId: "A-5"},
},
},
},
events.StatusChangeInBatchParams{
Event: "event2",
StatusChanges: events.StatusChanges{
Status: events.BOOKED,
Objects: []events.ObjectProperties{{ObjectId: "B-27"}},
},
},
)
// Holding seats
result, err := client.Events.ChangeObjectStatusInBatch(
events.StatusChangeInBatchParams{
Event: "event1",
StatusChanges: events.StatusChanges{
Status: events.HELD,
HoldToken: "wvXbB9MlHt",
Objects: []events.ObjectProperties{
{ObjectId: "A-3"},
{ObjectId: "A-5"},
},
},
},
events.StatusChangeInBatchParams{
Event: "event2",
StatusChanges: events.StatusChanges{
Status: events.HELD,
HoldToken: "wvXbB9MlHt",
Objects: []events.ObjectProperties{{ObjectId: "B-27"}},
},
},
)
// Re-holding booked seats
result, err := client.Events.ChangeObjectStatusInBatch(
events.StatusChangeInBatchParams{
Event: "myEvent",
StatusChanges: events.StatusChanges{
Status: events.FREE,
HoldToken: "wvXbB9MlHt",
Objects: []events.ObjectProperties{
{ObjectId: "A-3"},
{ObjectId: "A-5"},
},
},
},
events.StatusChangeInBatchParams{
Event: "myEvent",
StatusChanges: events.StatusChanges{
Status: events.HELD,
HoldToken: "wvXbB9MlHt",
Objects: []events.ObjectProperties{
{ObjectId: "A-3", TicketType: "adult"},
{ObjectId: "A-5", TicketType: "child"},
},
},
},
)
All seats (or tables, booths or GA places) passed in to this API will be considered as "used seats" for pricing purposes.
This is different from changing the object status in an event group, in the sense that not all events need to be linked to the same chart. The events can be completely independent.
This API call only supports events that belong to the same workspace. It's not possible to book objects in events across workspaces in a single API call. To do so, you'll need to make multiple calls.
Request
// Booking seats
{
statusChanges: [
{ event: 'event1', objects: ['A-3', 'A-5'], status: 'booked' },
{ event: 'event2', objects: ['B-27'], status: 'booked' }
]
}
// Holding seats
{
statusChanges: [
{
event: 'event1',
objects: ['A-3', 'A-5'],
status: 'reservedByToken',
holdToken: 'wvXbB9MlHt'
},
...
]
}
The request is a JSON object with one property: statusChanges
. This is an array of JSON objects, with the following properties:
- event: the event key
- objects: an array of object IDs, or an array of object ids and ticket types
- status: the status you want to assign to an object
- holdToken (optional): the hold token must be supplied when you hold a seat (status
reservedByToken
), or want to make sure that the same person that made the hold confirms his booking. - keepExtraData (optional): boolean. If set to true, the existing extra data doesn't get cleared
- orderId (optional): an order id, defined by yourself, to be able to retrieve the objects IDs per order later on.
- channelKeys (optional): an array of strings, i.e. the channel keys of the channel(s) to which the objects belong. If omitted, and the objects are assigned to a channel, the request will fail with 400 Bad request. Pass in
NO_CHANNEL
as channel key to allow objects without a channel. - ignoreChannels (optional): if true, the status change call succeeds, even if the objects belong to a channel. Useful inside a back office application, in which the user is allowed to book any seat - no matter the channel. Should not be used in combination with
channelKeys
. - allowedPreviousStatuses (optional): an array of strings, i.e. the list of statuses that the objects must be in. The request will fail with a 400 Bad Request if any of the objects have a status not present in the
allowedPreviousStatuses
list. Cannot be used in combination withrejectedPreviousStatuses
. - rejectedPreviousStatuses (optional): an array of strings, i.e. the list of statuses that the objects cannot be in. The request will fail with a 400 Bad Request if any of the objects have a status that is present in the
rejectedPreviousStatuses
list. Cannot be used in combination withallowedPreviousStatuses
.
Response
Without expand=objects 204 - No Content
With expand=objects 200 - ok
- results: JSON array that contains detailed information about the objects. results[0] corresponds to the first status change request you passed in, results[1] to the second one etc.
{
results: [
{
"objects": {
"A-3": {
"label": "A-3",
...
},
"A-5": {
"label": "A-5",
...
}
}
},
{
"objects": {
"B-27": {
"label": "B-27",
...
}
}
}
]
}