1. Introduction
A long, long time ago, when the seats were square-shaped and each seat was numbered, UX and conversion rate terms were something vague for the ticketing. Ticketing giants like TM invested a lot of money using all their experience to create impressive seating plans for the users.
Nowadays, with thousands of competitors, it takes all the running you can do to stay at the same place. As well as Alice, you can run twice as fast as now, and you need the right partner.
If you are good at marketing, sales, and ticketing operation and want to compete with the best on the market – you need a perfect, nice looking, informative, convenient seating plans to sell your venues.
Seatmap.pro is the platform for seating plans creation, management, and efficient seating charts rendering for the ticketing companies. The most powerful feature of Seatmap.pro is the possibility of integration with any ticketing system regardless of seating plan supportability.
Let’s go.
2. Overview
Seatmap.pro allows you to use the cutting-edge technologies for the seating plans management and the best user experience approaches and practices for the interaction with the End User. Embed reserved ticketing with a modern seating plan software, html5 seat system, leveraging full stack of technologies for visualization: SVG, HTML canvas and WebGL. Designed as a SaaS solution, Seatmap.pro aimed at leveraging the conversion rate for the ticketing sales.
Seatmap.pro operates with two general types of tickets:
-
Unique Seats with numbered names (Seat)
-
General admission tickets, when you have only a section specified on your ticket (GA)
2.1. Components
Seatmap.pro contains the following components and services:
- Seatmap Editor
-
Seating maps editor. Allows to create, edit and manage your seating plans.
- Seatmap Booking
-
Events and price management tool. This component is a bridge between schemas and specific seats on the event available for booking.
- Seatmap Renderer
-
JavaScript component embedded into the Sales page. Renderer responsible for all visualization routines on the client side.
All the components are designed as a seamless SaaS solution and should be delivered as one product. Unfortunately, we can’t deliver the only Renderer due to complex and constantly changing protocols between Renderer and Booking components. |
2.2. Security Concerns
How to separate the seating chart’s visual representation from the complete assignments/booking/sales ticketing cycle?
Seatmap.pro is the platform only for manipulation with seating plans.
We are not:
-
A ticketing company neither a ticketing service.
-
Getting the money from the users. Checkout process is operated completely on your side.
-
Counting how many tickets did you sell. We can see only the seat locks.
-
Getting your prices information. The prices can be abstracted like – 'Price 1', 'Price 2', etc.
3. Getting Started
To understand how to integrate Seatmap.pro into your ticketing system lets review and match overall simplified lifecycle of tickets during a reserved ticketing event.
In this document, we assume that you already have some ticketing system.
In a common scenario, we need to accomplish the following steps:
-
Create a schema for a venue.
-
Create an Event.
-
Assign prices to the seats (bind the event and schema).
-
Show the sales page to customers, and allow them to interact with the seating chart.
-
Add selected seats to the cart.
-
Check them out.
3.1. Composite Key
To address any attributes to specific seats on a chart (price, state and so on), Seatmap.pro uses natural language composite keys. For example, if you have a seat named: Section B, Row 5, Seat 14 – composite key will be "Section B;;5;;14".
So, to assign a price to a seat, lock, unlock and do any operation composite keys shall be considered as the main option.
General admission "Seats" shall be addressed by the section name |
3.2. Creating a Schema
Please refer to Seatmap.pro editor documentation to learn how to create and manage seating plans.
When a schema is created and published, it is ready to be exposed by API. Please see the Venues section to get more details.
3.3. Create an Event
The event is an entity that binds prices and seats for a single show. In Seatmap.pro you can assign more than one event to the schema. For example, if you have several events of one artist with the same show at the same venue you probably want to have the same seating chart for all events.
Be advised that in your terminology Event might be Instance or Show. |
Event creation should be a synchronized operation between your Event storage and Seatmap.pro. For example, if you want to create an event named "Test event" you should perform two simple requests:
-
Retrieve schemas and venues list
-
Create an Event linked to the selected schema
The created Event ID should be saved on your side to specify it during Renderer’s initialization on the Sales page. |
Now, when the event contains a linked schema, let’s assign prices to the event.
3.4. Assign Prices
To assign a price to the seats you should use Composite keys.
To retrieve all composite keys for a schema, please use the corresponding method from the Venues section.
|
-
It is an optional step, just to validate your namespace.
-
The assign price command sends an Array of key/values like composite key/price.
3.5. Show Seating Plan to User
The user opens the sales page in a browser. Without Seatmap.pro integration, you just show theEvent description and your approach to seat selection to the User.
To integrate the Renderer component into your sales page, you need to initialize the JS component and transfer the following values to it:
-
The public key (Security).
-
Event id (Saved on step 2 during Event creation).
-
Callbacks for the handling of mouse/touch events.
-
The Sales page should be rendered or filled with a data from the Ticketing System Backend.
-
Event ID created on the step 2 shall be returned to the Sales page.
-
The Sales page initializes the Renderer with Event ID.
-
The Renderer fetches all information by Event ID and initializes a seating chart.
After the initialization phase, the Renderer retrieves all the data including the seating chart and prices by Event ID from Booking API. Now it is ready to interact.
3.6. Operations with Seats
The renderer has callbacks for the basic events like:
-
Seat selection.
-
Seat deselection.
-
onHover, onBlur, etc.
Here, for the getting started purposes we are interested in how to integrate the ticket selection process and convert it into a successful purchase.
Your sales page handles callbacks including
.
After catching this event you have two options:onSeatSelect
-
Collect all the seats is a cart without any interactions with server-side, or.
-
On each select/deselect event do preliminary locks on objects.
Let’s consider the most complicated scenario – lock per click.
-
User clicks on a seat.
-
The renderer component runs callback function to notify the Sales page about en event.
-
The Sales page trying to lock a seat and sending the locking request to the Ticketing Backend.
-
The Ticketing Backend checks the seat’s state in accordance with internal logic.
-
In case if lock operation is available the Ticketing Backend sends lock request to the Booking service.
4. Renderer Component
The Renderer component is a JavaScript library for a seating plan visualization. The component allows us to display any available seating chart from Seatmap.pro and provides all functionality to interact with it. A renderer may be embedded into a sales page.
As a developer, from a JS perspective, you can interact with a component with in the following ways:
-
Component’s initial configuration
-
Subscribe on events
-
Direct component’s methods call
4.1. Initialization
For the component’s initialization you need to assign two basic parameters:
-
DOM element that will be a host element for the Renderer
-
Renderer settings
var el = document.getElementById('root');
var settings = {
publicKey: 'bd780a2f-9b9d-48a8-ad05-34dc5154fb9a',
onSectorClick: handleSectorClick
};
var renderer = new SeatmapBookingRenderer(el, settings);
Settings object may include the following properties:
var settings = {
publicKey: 'bd780a2f-9b9d-48a8-ad05-34dc5154fb9a',(1)
onSeatMouseEnter: function(seat) { (2)
console.log('seat mouse enter', seat);
},
onSeatMouseLeave: function() { (3)
console.log('seat mouse leave');
},
onSeatSelect: seat =>(4)
function(seat) {
console.log('seat select', seat);
},
onSeatDeselect: function(seat) {(5)
console.log('seat deselect', seat);
},
onCartChange: function(cart) {(6)
console.log('cart change ', cart);
},
onSectorMouseEnter: function(sector) {(7)
console.log('sector mouse enter', sector);
},
onSectorMouseLeave: function() {(8)
console.log('sector mouse leave');
},
onSectorClick: function(sector) {(9)
console.log('sector click', sector);
},
onZoomStart: function(to, from) {(10)
console.log('before zoom', to, from);
},
onZoomEnd: function(to, from) {(11)
console.log('after zoom', to, from);
},
onPan: function(delta, isEnd) {(12)
console.log('pan', delta, isEnd);
}
};
1 | Public key shall be used for each request |
2 | onSeatMouseEnter rises when the mouse pointer moves above a seat |
3 | onSeatMouseLeave fires when the mouse pointer leaves a seat |
4 | onSeatSelect fires when the user mark a seat as selected |
5 | onSeatDeselect fires when the user deselect a seat |
6 | onCartChange fires when the cart is modified |
7 | onSectorMouseEnter fires when the mouse pointer moves above a section |
8 | onSectorMouseLeave fires when the mouse pointer leaves a section |
9 | onSectorClick fires when the user click on a section |
10 | onZoomStart fires before the zoom operation |
11 | onZoomEnd fires after the zoom operation |
12 | onPan fires while panning |
4.2. Renderer Methods
4.2.1. Load Event’s Schema
loadEvent(eventId: string) => Promise
Loads event’s schema with prices and GA. As a parameter, you shall specify the Event ID. Method loadEvent is asynchronous, returns a Promise object.
var eventId = 'a4a75361-7823-4847-bf22-336843022e80';
renderer.loadEvent(eventId).then(function() {
renderer.initCart(cart);
});
4.2.2. Retrieve Internal Cart State
getCart() => ICart
Seatmap.pro does not support any session mechanisms. Cart is always should be stored on the ticketing system side. For the state management reasons, the Renderer has internal selected seat representation.
Returns selected seats.
var cart = {
seats: [
{ id: 1389563, key: 'Section 1;;5;;14', price: 100 },
{ key: 'Table 3;;1;;1', price: 500 },
{ key: 'Section 2;;5;;1', price: 200 }
],
ga: [
{
id: 100500, (1)
key: 'Table 2', (2)
price: 200, (3)
count: 1 },(4)
{ key: 'Section 5', price: 100, count: 2 }
]
};
1 | Internal seat or section id |
2 | Composite Key used for the global seats addressing |
3 | Price value |
4 | For GA section – quantity of tickets |
4.2.3. Clear Cart
clearCart()
Eliminate all the elements from the cart.
4.2.4. Cart Initialization
initCart(cart: ICart)
In a case of page reload you should initialize the saved state with this method.
Cart initialization is available right after component initialization.
var cart = {
seats: [
{
id: 1389563,
key: 'Section 1;;5;;14',
price: 100 },
{ key: 'Table 3;;1;;1', price: 500 },
{ key: 'Section 2;;5;;1', price: 200 }
],
ga: [
{
id: 100500,
key: 'Table 2',
price: 200,
count: 1 },
{ key: 'Section 5', price: 100, count: 2 }
]
};
renderer.initCart(cart);
Sales page must save the cart state in the given format to support the page reload feature |
4.2.5. Retrieve Prices
getPrices() => IColoredPrice[]
Returns array of available prices.
var prices = renderer.getPrices();
[
{ id: 63, name: '100', color: '#9C27B0' },
{ id: 64, name: '200', color: '#2196F3' }
];
4.2.6. Manually Add Seats to Cart
addSeatsToCart(seats: ICartSeat[])
Adds seat to cart programmatically. This method is optional. In a common scenario, the User adds available seats by clicking them.
renderer.addSeatsToCart([
{
id: 803, (1)
key: 'Section 3;;3;;1', (2)
price: 500 (3)
}
]);
1 | Internal seat identifier |
2 | Composite Key used for the global seats addressing |
3 | Price value |
4.2.7. Manually Add GA Seats to Cart
addGaToCart(ga: ICartGa)
Adds GA seats to the cart.
This method can be used when onSectorClick
fired and developer wants to handle custom add/remove GA seats control.
Then the selection in a custom control complete – you can just add desired quantity of GA tickets in the cart.
renderer.addGaToCart({
id: 100500,(1)
key: 'Table 2',(2)
price: 200,(3)
count: 3(4)
});
1 | Internal seat or section id |
2 | Composite Key used for the global seats addressing |
3 | Price value |
4 | For GA section – quantity of tickets |
4.2.8. Disable Seats by IDs
disableSeatsByIds(seatIds: number[])
Marks seats as unavailable using internal identifiers
4.2.9. Disable Seats by Keys
disableSeatsByKeys(keys: string[])
Marks seats as unavailable using Composite Key
4.2.10. Zooming
zoomIn() / zoomOut() / zoomToFit()
Zoom operations
4.2.11. Getting Zoom level
getZoom() => number
Returns the current zoom level
5. Endpoints
5.1. Booking
5.1.1. lock1
POST /api/private/v1.0/booking/lock
Lock a seat or GA
Description
Seat should be available
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
array[Selection]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
200 |
Returns unsuccessful attempts |
List[Selection] |
Samples
5.1.2. sale1
POST /api/private/v1.0/booking/sale
Transfer seat or GA to the state sold
Description
This feature applicable only in a sales control mode
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
array[Selection]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
200 |
Returns unsuccessful attempts |
List[Selection] |
Samples
5.1.3. unlock
POST /api/private/v1.0/booking/unlock
Unlock a seat or GA
Description
For GA unlocking capacity counter shall be specified
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
array[Selection]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
200 |
Returns unsuccessful attempts |
List[Selection] |
Samples
5.2. EventEventDetails
5.2.1. addEvent
POST /api/private/v2.0/events/
Create a event
Description
Binds a event
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Event |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns created object |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/events/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.2983075",
"killAfter" : "2024-10-31T09:12:17.298314196",
"name" : "event",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 182
{
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.2983075",
"killAfter" : "2024-10-31T09:12:17.298314196",
"name" : "event",
"schemaId" : 80
}
5.2.2. deleteEventById
DELETE /api/private/v2.0/events/{id}
Delete a event
Description
Binds a event
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/events/2fdebf0e-9162-438a-8311-82af00320dcf' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.2.3. getEventById
GET /api/private/v2.0/events/{id}
Retrieves a specific event by id
Description
Getting event by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/events/2fdebf0e-9162-438a-8311-82af00320dcf' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 178
{
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.298308",
"killAfter" : "2024-10-31T09:12:17.298314",
"name" : "event",
"schemaId" : 80
}
5.2.4. getEvents
GET /api/private/v2.0/events/
Retrieve list of all events
Description
Getting all the events with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns list of objects |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/events/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 3522
{
"totalElements" : 18,
"totalPages" : 1,
"size" : 18,
"content" : [ {
"id" : "38158dca-a13d-4b29-81ef-71bdfa21a301",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "b54d3850-59f4-4d96-8c55-0cbdc0195cc8",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "08800a2b-44ef-441e-9938-7d51faf35669",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test22",
"schemaId" : 80
}, {
"id" : "a4e29b43-2359-44e1-ade6-f972293137f3",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "7ad2a166-ded2-4ad9-81e5-f164c304b47f",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "141f20ca-0b47-4e9b-a752-cd71dc7e2057",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "74ba80ab-8ec4-4bfb-96f5-43e624c9244a",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "testPrice",
"schemaId" : 80
}, {
"id" : "af46e5b5-a49b-4067-a567-8e2f019f4609",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "testPrice",
"schemaId" : 80
}, {
"id" : "e13b1161-dd12-4906-8dc4-d06088b3c3f9",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "testPrice",
"schemaId" : 80
}, {
"id" : "639f9fbf-3af7-40b5-8280-e6350e4507b1",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "testPrice",
"schemaId" : 80
}, {
"id" : "768f5ac1-a781-4f8a-81b9-b8d47d3432b9",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "b722c726-e222-4cd8-9a0d-e4c4539ad54c",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "0a4d07cd-4a1e-4806-9056-3c0eba180de0",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "85cbeb95-ba12-4b42-bfbc-bdc1a858cc92",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "83c56abe-301c-491a-aa28-58c2be84b25b",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "74d03f36-591b-46c6-ae46-aa53bfce9b22",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}, {
"id" : "881cdf04-aee3-48aa-8679-cf70b8649aff",
"start" : "2024-10-30T09:12:17.101871",
"killAfter" : "2024-10-30T09:12:17.101878",
"name" : "test",
"schemaId" : 80
}, {
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.298308",
"killAfter" : "2024-10-31T09:12:17.298314",
"name" : "event",
"schemaId" : 80
} ],
"number" : 0,
"sort" : {
"empty" : true,
"unsorted" : true,
"sorted" : false
},
"first" : true,
"last" : true,
"numberOfElements" : 18,
"pageable" : "INSTANCE",
"empty" : false
}
5.2.5. lock
POST /api/private/v2.0/booking/lock
Lock a seat or GA
Description
Seat should be available
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
StateSelection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/booking/lock?eventId=881cdf04-aee3-48aa-8679-cf70b8649aff' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"groupOfSeats" : [ {
"id" : 817,
"capacity" : 20
} ],
"seats" : [ {
"id" : 68678,
"capacity" : null
}, {
"id" : 68673,
"capacity" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.2.6. revertSale
POST /api/private/v2.0/booking/revertsale
Transfer seat or GA to the state active
Description
This feature applicable only in a sales control mode
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
StateSelection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/booking/revertsale?eventId=881cdf04-aee3-48aa-8679-cf70b8649aff' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"groupOfSeats" : [ {
"id" : 817,
"capacity" : 10
} ],
"seats" : [ {
"id" : 68678,
"capacity" : null
}, {
"id" : 68673,
"capacity" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.2.7. sale
POST /api/private/v2.0/booking/sale
Transfer seat or GA to the state sold
Description
This feature applicable only in a sales control mode
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
StateSelection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/booking/sale?eventId=881cdf04-aee3-48aa-8679-cf70b8649aff' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"groupOfSeats" : [ {
"id" : 817,
"capacity" : 10
} ],
"seats" : [ {
"id" : 68678,
"capacity" : null
}, {
"id" : 68673,
"capacity" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.2.8. unLock
POST /api/private/v2.0/booking/unlock
Unlock a seat or GA
Description
For GA unlocking capacity counter shall be specified
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
StateSelection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/booking/unlock?eventId=881cdf04-aee3-48aa-8679-cf70b8649aff' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"groupOfSeats" : [ {
"id" : 817,
"capacity" : 20
} ],
"seats" : [ {
"id" : 68678,
"capacity" : null
}, {
"id" : 68673,
"capacity" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.2.9. updateEvent
PUT /api/private/v2.0/events/
Update a event
Description
Binds a event
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Event |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/events/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.2983075",
"killAfter" : "2024-10-31T09:12:17.298314196",
"name" : "namewe",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 179
{
"id" : "2fdebf0e-9162-438a-8311-82af00320dcf",
"start" : "2024-10-30T09:12:17.298308",
"killAfter" : "2024-10-31T09:12:17.298314",
"name" : "namewe",
"schemaId" : 80
}
5.3. Events
5.3.1. eventAll
GET /api/private/v1.0/events/
Retrieve list of all events
Description
Getting all the events with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
limit |
Quantity of requested items |
- |
50 |
|
offset |
Offset for the pager |
- |
0 |
Return Type
array[Event]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Event] |
200 |
Returns list of objects |
List[Event] |
403 |
Forbidden. Please use correct private key. |
List[Event] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 167
[ {
"id" : "b54d3850-59f4-4d96-8c55-0cbdc0195cc8",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
} ]
5.3.2. eventCreate
POST /api/private/v1.0/events/
Create an Event
Description
Before you start to create an Event you need to create a schema with venue.
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Event |
X |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns created object |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : null,
"start" : "2024-10-30T09:12:10.511519054",
"killAfter" : "2024-10-30T09:12:10.511529315",
"name" : "test",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 163
{
"id" : "b54d3850-59f4-4d96-8c55-0cbdc0195cc8",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test",
"schemaId" : 80
}
5.3.3. eventDelete
DELETE /api/private/v1.0/events/{id}
Delete an Event
Description
Deleted event shall contains valid id.
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
Valid event identifier |
X |
null |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns result of the delete operation |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/38158dca-a13d-4b29-81ef-71bdfa21a301' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 4
true
5.3.4. eventUpdate
PUT /api/private/v1.0/events/
Update an Event
Description
Updated event shall contains valid id.
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Event |
X |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/events/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '{
"id" : "08800a2b-44ef-441e-9938-7d51faf35669",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test22",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 165
{
"id" : "08800a2b-44ef-441e-9938-7d51faf35669",
"start" : "2024-10-30T09:12:00",
"killAfter" : "2024-10-30T09:12:00",
"name" : "test22",
"schemaId" : 80
}
5.4. OrganizationOrganizationDetails
5.4.1. addOrganization
POST /api/private/v2.0/organizations/
Create a organization
Description
Create a organization
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Organization |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns created object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/organizations/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ0ZXN0QHNlYXRtYXAucHJvIiwiYXVkIjoiYXBpLWNsaWVudCIsIm5iZiI6MTczMDI3OTUzNywic2NvcGUiOlsib3BlbmlkIiwiYXBpLnJlYWQiXSwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo5MDkwIiwiZXhwIjoxNzMwMjc5ODM3LCJpYXQiOjE3MzAyNzk1MzcsImp0aSI6ImMzZWZkNzM4LTA1MTMtNDM2NC05ZDNjLTFmZjNmYTRjZjkzMSJ9.icEYRPUIIMSSNNaNYhj50dmN2D-Ug-A-Hwjei5mmrpT1JmgP1qq9ATCENSjNT6Ec06EdktqSZnSUK_uozz093Q5GSFEh2Ph1_j2C-1Vgp_84ze1RCaYJ_Ngcg-Vb-E6Mm2CVOIDSTXcXdrySV_DjxeAIUCMpfT5nvP6rUHGyodwdAaqXfrG5QXkh15mwE5TeNrbVG-2B-C3cai_i1OjWjkJ1XQtiSg6-YYFty-V2ojqJRBVt6xJgJzQGbxV4lGRt-C_EAPMQ1qtEiDyN15KBVzZqXQ5hfNXTJ5CxYQCyKx4l6ziiqLvg1xFS6nJ60NBPMBjLOzhtH8Uin92DJJEiDA' \
-d '{
"id" : null,
"name" : "Test Organization",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 263
{
"id" : 2,
"name" : "Test Organization",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
}
5.4.2. deleteOrganizationById
DELETE /api/private/v2.0/organizations/{id}
Delete a organization
Description
Delete a organization
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/organizations/2' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ0ZXN0QHNlYXRtYXAucHJvIiwiYXVkIjoiYXBpLWNsaWVudCIsIm5iZiI6MTczMDI3OTUzNywic2NvcGUiOlsib3BlbmlkIiwiYXBpLnJlYWQiXSwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo5MDkwIiwiZXhwIjoxNzMwMjc5ODM3LCJpYXQiOjE3MzAyNzk1MzcsImp0aSI6ImMzZWZkNzM4LTA1MTMtNDM2NC05ZDNjLTFmZjNmYTRjZjkzMSJ9.icEYRPUIIMSSNNaNYhj50dmN2D-Ug-A-Hwjei5mmrpT1JmgP1qq9ATCENSjNT6Ec06EdktqSZnSUK_uozz093Q5GSFEh2Ph1_j2C-1Vgp_84ze1RCaYJ_Ngcg-Vb-E6Mm2CVOIDSTXcXdrySV_DjxeAIUCMpfT5nvP6rUHGyodwdAaqXfrG5QXkh15mwE5TeNrbVG-2B-C3cai_i1OjWjkJ1XQtiSg6-YYFty-V2ojqJRBVt6xJgJzQGbxV4lGRt-C_EAPMQ1qtEiDyN15KBVzZqXQ5hfNXTJ5CxYQCyKx4l6ziiqLvg1xFS6nJ60NBPMBjLOzhtH8Uin92DJJEiDA'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.4.3. getOrganizationById
GET /api/private/v2.0/organizations/{id}
Retrieves a specific organization by id
Description
Getting organization by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/organizations/2' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ0ZXN0QHNlYXRtYXAucHJvIiwiYXVkIjoiYXBpLWNsaWVudCIsIm5iZiI6MTczMDI3OTUzNywic2NvcGUiOlsib3BlbmlkIiwiYXBpLnJlYWQiXSwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo5MDkwIiwiZXhwIjoxNzMwMjc5ODM3LCJpYXQiOjE3MzAyNzk1MzcsImp0aSI6ImMzZWZkNzM4LTA1MTMtNDM2NC05ZDNjLTFmZjNmYTRjZjkzMSJ9.icEYRPUIIMSSNNaNYhj50dmN2D-Ug-A-Hwjei5mmrpT1JmgP1qq9ATCENSjNT6Ec06EdktqSZnSUK_uozz093Q5GSFEh2Ph1_j2C-1Vgp_84ze1RCaYJ_Ngcg-Vb-E6Mm2CVOIDSTXcXdrySV_DjxeAIUCMpfT5nvP6rUHGyodwdAaqXfrG5QXkh15mwE5TeNrbVG-2B-C3cai_i1OjWjkJ1XQtiSg6-YYFty-V2ojqJRBVt6xJgJzQGbxV4lGRt-C_EAPMQ1qtEiDyN15KBVzZqXQ5hfNXTJ5CxYQCyKx4l6ziiqLvg1xFS6nJ60NBPMBjLOzhtH8Uin92DJJEiDA'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 263
{
"id" : 2,
"name" : "Test Organization",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
}
5.4.4. getOrganizations
GET /api/private/v2.0/organizations/
Retrieve list of all organizations
Description
Getting all the organizations with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns list of objects |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/organizations/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ0ZXN0QHNlYXRtYXAucHJvIiwiYXVkIjoiYXBpLWNsaWVudCIsIm5iZiI6MTczMDI3OTUzNywic2NvcGUiOlsib3BlbmlkIiwiYXBpLnJlYWQiXSwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo5MDkwIiwiZXhwIjoxNzMwMjc5ODM3LCJpYXQiOjE3MzAyNzk1MzcsImp0aSI6ImMzZWZkNzM4LTA1MTMtNDM2NC05ZDNjLTFmZjNmYTRjZjkzMSJ9.icEYRPUIIMSSNNaNYhj50dmN2D-Ug-A-Hwjei5mmrpT1JmgP1qq9ATCENSjNT6Ec06EdktqSZnSUK_uozz093Q5GSFEh2Ph1_j2C-1Vgp_84ze1RCaYJ_Ngcg-Vb-E6Mm2CVOIDSTXcXdrySV_DjxeAIUCMpfT5nvP6rUHGyodwdAaqXfrG5QXkh15mwE5TeNrbVG-2B-C3cai_i1OjWjkJ1XQtiSg6-YYFty-V2ojqJRBVt6xJgJzQGbxV4lGRt-C_EAPMQ1qtEiDyN15KBVzZqXQ5hfNXTJ5CxYQCyKx4l6ziiqLvg1xFS6nJ60NBPMBjLOzhtH8Uin92DJJEiDA'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 846
{
"totalElements" : 2,
"totalPages" : 1,
"size" : 2,
"content" : [ {
"id" : 1,
"name" : "test organization",
"publicKey" : "bd780a2f-9b9d-48a8-ad05-34dc5154fb9a",
"privateKey" : "af90387c-9071-4015-9a58-cbb543d84130",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "VENUE"
}, {
"id" : 2,
"name" : "Test Organization",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
} ],
"number" : 0,
"sort" : {
"empty" : true,
"unsorted" : true,
"sorted" : false
},
"first" : true,
"last" : true,
"numberOfElements" : 2,
"pageable" : "INSTANCE",
"empty" : false
}
5.4.5. updateOrganization
PUT /api/private/v2.0/organizations/
Update a organization
Description
Update a organization
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Organization |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/organizations/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ0ZXN0QHNlYXRtYXAucHJvIiwiYXVkIjoiYXBpLWNsaWVudCIsIm5iZiI6MTczMDI3OTUzNywic2NvcGUiOlsib3BlbmlkIiwiYXBpLnJlYWQiXSwiaXNzIjoiaHR0cDovL2xvY2FsaG9zdDo5MDkwIiwiZXhwIjoxNzMwMjc5ODM3LCJpYXQiOjE3MzAyNzk1MzcsImp0aSI6ImMzZWZkNzM4LTA1MTMtNDM2NC05ZDNjLTFmZjNmYTRjZjkzMSJ9.icEYRPUIIMSSNNaNYhj50dmN2D-Ug-A-Hwjei5mmrpT1JmgP1qq9ATCENSjNT6Ec06EdktqSZnSUK_uozz093Q5GSFEh2Ph1_j2C-1Vgp_84ze1RCaYJ_Ngcg-Vb-E6Mm2CVOIDSTXcXdrySV_DjxeAIUCMpfT5nvP6rUHGyodwdAaqXfrG5QXkh15mwE5TeNrbVG-2B-C3cai_i1OjWjkJ1XQtiSg6-YYFty-V2ojqJRBVt6xJgJzQGbxV4lGRt-C_EAPMQ1qtEiDyN15KBVzZqXQ5hfNXTJ5CxYQCyKx4l6ziiqLvg1xFS6nJ60NBPMBjLOzhtH8Uin92DJJEiDA' \
-d '{
"id" : 2,
"name" : "nameorg",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 253
{
"id" : 2,
"name" : "nameorg",
"publicKey" : "4d25d493-48a4-49c1-ad88-756444011ac0",
"privateKey" : "99b7c40b-fd16-4791-8554-4878f55d5bf7",
"domain" : null,
"autologinEnabled" : false,
"appendDomainToLogin" : false,
"type" : "DEFAULT"
}
5.5. PriceAssignments
5.5.1. assignPrice1
POST /api/private/v1.0/assignments/
Assign prices to event
Description
Price assignments assume using of plain representation of price. For GA sections you need to specify capacity
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
PriceAssignment |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
Corresponding event id |
X |
null |
|
clean |
Clean before assign is used when you need completely renew the price assignment. It also could be cleaned with clean method |
- |
false |
Return Type
array[PriceAssignment]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[PriceAssignment] |
403 |
Forbidden. Please use correct private key. |
List[PriceAssignment] |
200 |
Returns unsuccessful assignments |
List[PriceAssignment] |
Samples
5.5.2. cleanAssignment
POST /api/private/v1.0/assignments/clean
Remove all price assignments from event
Description
All states including locked seats, will be cleaned up during this operation
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
Corresponding event id |
X |
null |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/assignments/clean' -i -X POST \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 4
true
5.5.3. removeAssignment
DELETE /api/private/v1.0/assignments/
Remove specified assignments from event
Description
To remove assignments from event we are using simplified object Selection. For GA sections use capacity field as well
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
Corresponding event id |
X |
null |
Return Type
array[Selection]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns unsuccessful attempts to remove assignment |
List[Selection] |
400 |
Input data is not valid |
List[Selection] |
403 |
Forbidden. Please use correct private key. |
List[Selection] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/assignments/?id=141f20ca-0b47-4e9b-a752-cd71dc7e2057' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130' \
-d '[ {
"capacity" : 50,
"compositeKey" : "fan zone"
}, {
"capacity" : null,
"compositeKey" : "Unnamed section;;4;;7"
} ]'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 3
[ ]
5.6. PriceTopology
5.6.1. assignPrice
POST /api/private/v2.0/event/{eventId}/prices/assignments/
Assign a price to seats and group of seats
Description
Assign a price to seats and group of seats
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/assignments/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"seats" : [ {
"objectId" : 68678,
"assignmentId" : 11,
"activeCount" : null
}, {
"objectId" : 68673,
"assignmentId" : 11,
"activeCount" : null
} ],
"groupOfSeats" : [ {
"objectId" : 5955,
"assignmentId" : 11,
"activeCount" : null
}, {
"objectId" : 5957,
"assignmentId" : 11,
"activeCount" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.6.2. getPriceById
GET /api/private/v2.0/event/{eventId}/prices/{id}
Retrieves a specific price by id
Description
Getting price by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
||
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/?id=10' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 89
[ {
"id" : 10,
"name" : "3",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
} ]
5.6.3. getPrices
GET /api/private/v2.0/event/{eventId}/prices/
Retrieve list of all prices
Description
Getting all the prices with paging
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
array[Price]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Price] |
200 |
Returns list of objects |
List[Price] |
403 |
Forbidden. Please use correct credentials. |
List[Price] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 89
[ {
"id" : 10,
"name" : "3",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
} ]
5.6.4. priceCreate
POST /api/private/v2.0/event/{eventId}/prices/
Create a price for event
Description
Binds a price to event
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Price |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns created object |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : null,
"name" : "3",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 85
{
"id" : 11,
"name" : "3",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
}
5.6.5. priceDelete
DELETE /api/private/v2.0/event/{eventId}/prices/{id}
Delete a price for event
Description
Binds a price to event
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
||
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/10' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.6.6. priceUpdate
PUT /api/private/v2.0/event/{eventId}/prices/
Update a price for event
Description
Binds a price to event
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
eventId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Price |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/event/be63d811-b023-4901-b3cf-33db0195ed8e/prices/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : 10,
"name" : "4",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 85
{
"id" : 10,
"name" : "4",
"eventId" : "be63d811-b023-4901-b3cf-33db0195ed8e"
}
5.7. Prices
5.7.1. priceAll
GET /api/private/v1.0/prices/
Retrieve all prices for event
Description
All prices
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
array[Price]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Price] |
200 |
Returns list of objects |
List[Price] |
403 |
Forbidden. Please use correct private key. |
List[Price] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/prices/?id=639f9fbf-3af7-40b5-8280-e6350e4507b1' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 3
[ ]
5.7.2. priceCreate1
POST /api/private/v1.0/prices/
Create a price for event
Description
Binds a price to event
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Price |
X |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns created object |
Samples
5.7.3. priceDelete1
DELETE /api/private/v1.0/prices/
Delete a price for event
Description
Binds a price to event
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns true if everything is ok. |
Samples
5.7.4. priceUpdate1
PUT /api/private/v1.0/prices/
Update a price for event
Description
Binds a price to event
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Price |
X |
Return Type
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
Samples
5.8. PublicEventController
5.8.1. getEventPrices
GET /api/public/v1.0/event/prices/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
||
publicKey |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
Samples
5.8.2. getEventSeatmap
GET /api/public/v1.0/event/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
||
publicKey |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
Samples
5.8.3. getPriceZones
GET /api/public/v1.0/event/zones/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
||
publicKey |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
Samples
5.8.4. getSchemaRows
GET /api/public/v1.0/event/schema/rows/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
||
publicKey |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
Samples
5.9. PublicVenueController
5.9.1. getSchemaSeatmap
GET /api/public/v1.0/venue/schema/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
||
publicKey |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
Samples
5.9.2. getSchemaSeatmapList
GET /api/public/v1.0/venue/
Description
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
publicKey |
X |
null |
Return Type
array[VenueForWidget]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
OK |
List[VenueForWidget] |
Samples
5.10. SchemasTopology
5.10.1. addPricingZone
POST /api/private/v2.0/schemas/{schemaId}/pricing_zones/
Create a pricing zone for schema
Description
Create a pricing zone for schema
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
PricingZone |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns created object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : null,
"name" : "2",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 49
{
"id" : 2,
"name" : "2",
"schemaId" : 80
}
5.10.2. assignPricingZone
POST /api/private/v2.0/schemas/{schemaId}/pricing_zones/assignments/
Assign a pricing zone to seats and group of seats
Description
Assign a pricing zone to seats and group of seats
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Selection |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/assignments/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"seats" : [ {
"objectId" : 68678,
"assignmentId" : 2,
"activeCount" : null
}, {
"objectId" : 68673,
"assignmentId" : 2,
"activeCount" : null
} ],
"groupOfSeats" : [ {
"objectId" : 5955,
"assignmentId" : 2,
"activeCount" : null
}, {
"objectId" : 5957,
"assignmentId" : 2,
"activeCount" : null
} ]
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.10.3. deletePricingZone
DELETE /api/private/v2.0/schemas/{schemaId}/pricing_zones/{id}
Delete a pricing zone for schema
Description
Delete a pricing zone for schema
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
||
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/1' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.10.4. deleteSchemaById
DELETE /api/private/v2.0/schemas/{id}
Delete a schema
Description
Delete a schema
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.10.5. geSchemas
GET /api/private/v2.0/schemas/
Retrieve list of all schemas
Description
Getting all the schemas with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns list of objects |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 561
{
"totalElements" : 1,
"totalPages" : 1,
"size" : 1,
"content" : [ {
"id" : 80,
"name" : "Country Road",
"externalId" : null,
"template" : false,
"draft" : false,
"gaCapacity" : null,
"seatsCapacity" : null,
"description" : null,
"preview" : "f409d730-5fa9-476c-9cf1-12bb44f394bd",
"archived" : false
} ],
"number" : 0,
"sort" : {
"empty" : true,
"unsorted" : true,
"sorted" : false
},
"first" : true,
"last" : true,
"numberOfElements" : 1,
"pageable" : "INSTANCE",
"empty" : false
}
5.10.6. getGroupOfSeatsBySchemaId
GET /api/private/v2.0/schemas/{schemaId}/seatmaps/
Retrieve list of all group of seats
Description
Getting all the group of seats
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
parentId |
- |
null |
Return Type
array[GroupOfSeats]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[GroupOfSeats] |
200 |
Returns list of objects |
List[GroupOfSeats] |
403 |
Forbidden. Please use correct credentials. |
List[GroupOfSeats] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/seatmaps/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 28396
[ {
"id" : 212949,
"name" : "fan zone",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 267,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 815,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 816,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 817,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 820,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 948,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 949,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 950,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 951,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 957,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 958,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 959,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 960,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 961,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 963,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 964,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 965,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 967,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 968,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 972,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 973,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 975,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 991,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 992,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 993,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 994,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 995,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 996,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1001,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1042,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1044,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1045,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1046,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1049,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1050,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1051,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1052,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1067,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1080,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1081,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1082,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1084,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1085,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1086,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1088,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1090,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1091,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1092,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1094,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1098,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1099,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1148,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1149,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1155,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1162,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1163,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1164,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1165,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1172,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1173,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1175,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1176,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1327,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1329,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1330,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1331,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1362,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1363,
"name" : "Unnamed section copy copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1364,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1365,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1560,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1591,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1593,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1602,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1603,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1606,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1609,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1610,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1611,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1612,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1613,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1614,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1615,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1616,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1617,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1618,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1619,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1620,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1621,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1622,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1623,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1624,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1625,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1626,
"name" : "Unnamed section copy copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1629,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1630,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1631,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1632,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1633,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1634,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1637,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1638,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1639,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1640,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1641,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1642,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1643,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1644,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1645,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1646,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1647,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1648,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1649,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1650,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1651,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1652,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1653,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1654,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1655,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1656,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1657,
"name" : "Unnamed section copy copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1658,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1659,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1660,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1661,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1662,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1663,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1664,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1665,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1666,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1667,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1668,
"name" : "Unnamed section copy copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1669,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1670,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1671,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1672,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1676,
"name" : "Unnamed section copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1677,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1678,
"name" : "Unnamed section copy copy copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1679,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1680,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1683,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1684,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1685,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1686,
"name" : "Unnamed section",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
}, {
"id" : 1687,
"name" : "Unnamed section copy",
"prefix" : null,
"seatPrefix" : null,
"parentId" : null,
"type" : null,
"ga" : false,
"schemaId" : 80,
"pricingZoneId" : null
} ]
5.10.7. getPricingZones
GET /api/private/v2.0/schemas/{schemaId}/pricing_zones/
Retrieve list of all pricing zones
Description
Getting all the pricing zones with paging
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
array[PricingZone]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[PricingZone] |
200 |
Returns list of objects |
List[PricingZone] |
403 |
Forbidden. Please use correct credentials. |
List[PricingZone] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 53
[ {
"id" : 1,
"name" : "2",
"schemaId" : 80
} ]
5.10.8. getPricingZonesById
GET /api/private/v2.0/schemas/{schemaId}/pricing_zones/{id}
Retrieves a specific pricing zone by id
Description
Getting pricing zone by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
||
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/?id=1' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 53
[ {
"id" : 1,
"name" : "2",
"schemaId" : 80
} ]
5.10.9. getSchemaById
GET /api/private/v2.0/schemas/{id}
Retrieves a specific schema by id
Description
Getting schema by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 254
{
"id" : 80,
"name" : "Country Road",
"externalId" : null,
"template" : false,
"draft" : false,
"gaCapacity" : null,
"seatsCapacity" : 500,
"description" : null,
"preview" : "f409d730-5fa9-476c-9cf1-12bb44f394bd",
"archived" : false
}
5.10.10. getSeatsBySectionId
GET /api/private/v2.0/schemas/{schemaId}/seatmaps/seats/
Retrieve list of seats by section id
Description
Getting all the seats
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
sectionId |
X |
null |
Return Type
array[Seat]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Seat] |
200 |
Returns list of objects |
List[Seat] |
403 |
Forbidden. Please use correct credentials. |
List[Seat] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/seatmaps/seats/?sectionId=5971' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 591
[ {
"id" : 406926,
"name" : "17",
"accessible" : false,
"hidden" : false,
"marked" : false,
"groupOfSeatsId" : 5971,
"schemaId" : 80,
"pricingZoneId" : null,
"externalId" : null
}, {
"id" : 406871,
"name" : "12",
"accessible" : false,
"hidden" : false,
"marked" : false,
"groupOfSeatsId" : 5971,
"schemaId" : 80,
"pricingZoneId" : null,
"externalId" : null
}, {
"id" : 69514,
"name" : "7",
"accessible" : false,
"hidden" : false,
"marked" : false,
"groupOfSeatsId" : 5971,
"schemaId" : 80,
"pricingZoneId" : null,
"externalId" : null
} ]
5.10.11. updatePricingZone
PUT /api/private/v2.0/schemas/{schemaId}/pricing_zones/
Update a pricing zone for schema
Description
Update a pricing zone for schema
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
PricingZone |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/80/pricing_zones/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : 1,
"name" : "3",
"schemaId" : 80
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 49
{
"id" : 1,
"name" : "3",
"schemaId" : 80
}
5.10.12. updateSchema
PUT /api/private/v2.0/schemas/
Update a schema
Description
Update a schema
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Schema |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/schemas/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : 80,
"name" : "namewe",
"externalId" : "fac82bbd-3827-4eb6-968e-79618aff0364",
"template" : false,
"draft" : false,
"gaCapacity" : null,
"seatsCapacity" : 500,
"description" : null,
"preview" : "f409d730-5fa9-476c-9cf1-12bb44f394bd",
"archived" : false
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 282
{
"id" : 80,
"name" : "namewe",
"externalId" : "fac82bbd-3827-4eb6-968e-79618aff0364",
"template" : false,
"draft" : false,
"gaCapacity" : null,
"seatsCapacity" : 500,
"description" : null,
"preview" : "f409d730-5fa9-476c-9cf1-12bb44f394bd",
"archived" : false
}
5.11. Venues
5.11.1. schemaAll
GET /api/private/v1.0/venues/schemas/
Retrieve list of all schemas
Description
Getting all the schemas with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
limit |
Quantity of requested items |
- |
50 |
|
offset |
Offset for the pager |
- |
0 |
|
venueId |
Venue id |
- |
null |
|
lastUpdated |
Schemas updated after this date will be retrieved. |
- |
null |
Return Type
array[Schema]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Schema] |
200 |
Returns list of schemas |
List[Schema] |
403 |
Forbidden. Please use correct private key. |
List[Schema] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/?lastUpdated=2004-10-30T09%3A12%3A15.308780377&venueId=68' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 139
[ {
"id" : 80,
"capacity" : null,
"name" : "Country Road",
"venueId" : 68,
"eventId" : "b5feeb7d-c59b-4bf5-90b6-c25d6df0ac10"
} ]
5.11.2. schemaDetails
GET /api/private/v1.0/venues/schemas/{schemaId}/details/
Retrieve schema’s details
Description
Getting schema’s details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns schema's details |
Samples
5.11.3. schemaMetadata
GET /api/private/v1.0/venues/schemas/{schemaId}/
Retrieve schema’s metadata
Description
Getting schema’s metadata with \\<\\<#composite-key, Composite Key\\>\\>s
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
numberedSections |
- |
false |
||
useInternalIds |
- |
false |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct private key. |
|
200 |
Returns schema's metadata |
Samples
5.11.4. sectionMetadata
GET /api/private/v1.0/venues/schemas/{schemaId}/section/{sectionId}/
Retrieve section’s metadata
Description
Getting section’s metadata with ID
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
schemaId |
X |
null |
||
sectionId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns section's metadata |
|
403 |
Forbidden. Please use correct private key. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/schemas/80/section/1631/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 279
{
"id" : 1631,
"isGa" : false,
"name" : "Unnamed section",
"x" : -5515.22,
"y" : 2072.11,
"guid" : "6db6be52-7d42-4960-8da2-6b7be0a25884",
"left" : null,
"top" : null,
"angle" : null,
"width" : null,
"height" : null,
"type" : "SECTION",
"shapes" : [ ]
}
5.11.5. venueAll
GET /api/private/v1.0/venues/
Retrieve list of all venues
Description
Getting all the venues with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
limit |
Quantity of requested items |
- |
50 |
|
offset |
Offset for the pager |
- |
0 |
Return Type
array[Venue]
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
List[Venue] |
200 |
Returns list of objects |
List[Venue] |
403 |
Forbidden. Please use correct private key. |
List[Venue] |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v1.0/venues/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-API-Key: af90387c-9071-4015-9a58-cbb543d84130'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
Content-Length: 100
[ {
"id" : 68,
"name" : "O2 Arena",
"address" : "London, UK",
"lat" : 0.0,
"lng" : 0.0
} ]
5.11.6. venueById
GET /api/private/v1.0/venues/{venueId}
Retrieves a specific venue by id
Description
Getting venue by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
venueId |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns list of objects |
|
403 |
Forbidden. Please use correct private key. |
Samples
5.12. VenuesVenueDetails
5.12.1. addVenue
POST /api/private/v2.0/venues/
Create a venue
Description
Create a venue
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Venue |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns created object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/venues/' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : null,
"name" : "name",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 106
{
"id" : 1,
"name" : "name",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
}
5.12.2. deleteVenueById
DELETE /api/private/v2.0/venues/{id}
Delete a venue
Description
Delete a venue
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns true if everything is ok. |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/venues/1' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 4
true
5.12.3. getVenueById
GET /api/private/v2.0/venues/{id}
Retrieves a specific venue by id
Description
Getting venue by Id
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
id |
X |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns object |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/venues/1' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 106
{
"id" : 1,
"name" : "name",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
}
5.12.4. getVenues
GET /api/private/v2.0/venues/
Retrieve list of all venues
Description
Getting all the venues with paging
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
page |
Zero-based page index (0..N) |
- |
0 |
|
size |
The size of the page to be returned |
- |
20 |
|
sort |
Sorting criteria in the format: property,(asc |
desc). Default sort order is ascending. Multiple sort criteria are supported. [String] |
- |
null |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
400 |
Input data is not valid |
|
200 |
Returns list of objects |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/venues/' -i -X GET \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 535
{
"totalElements" : 2,
"totalPages" : 1,
"size" : 2,
"content" : [ {
"id" : 68,
"name" : "O2 Arena",
"address" : "London, UK",
"lat" : 0.0,
"lng" : 0.0,
"draft" : false
}, {
"id" : 1,
"name" : "name",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
} ],
"number" : 0,
"sort" : {
"empty" : true,
"unsorted" : true,
"sorted" : false
},
"first" : true,
"last" : true,
"numberOfElements" : 2,
"pageable" : "INSTANCE",
"empty" : false
}
5.12.5. updateVenue
PUT /api/private/v2.0/venues/
Update a venue
Description
Update a venue
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Venue |
X |
Return Type
Content Type
-
/
Responses
Code | Message | Datatype |
---|---|---|
200 |
Returns updated object |
|
400 |
Input data is not valid |
|
403 |
Forbidden. Please use correct credentials. |
Samples
$ curl 'https://booking.seatmap.pro/api/private/v2.0/venues/' -i -X PUT \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer eyJraWQiOiIzOGI1ZDE4OS0zYzI4LTQ2ZmItOGUxNC1iZDM3ZTZjODdkNDkiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJiZDc4MGEyZi05YjlkLTQ4YTgtYWQwNS0zNGRjNTE1NGZiOWEiLCJhdWQiOiJhcGktY2xpZW50IiwibmJmIjoxNzMwMjc5NTM2LCJzY29wZSI6WyJvcGVuaWQiLCJhcGkucmVhZCJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjkwOTAiLCJleHAiOjE3MzAyNzk4MzYsImlhdCI6MTczMDI3OTUzNiwianRpIjoiMTUwNWI1ZWItZDc0Yi00Y2E5LTk3ZmYtMWRkYzU4ODA0NzJiIn0.Jp8Ljoce_7qidj4eqzP6srd8hvimkKtSW7CorOBgt24NK1l0kbLBMX5COsDJXA0Ga9Sx1d4v4c5nsbevtcKDInTz3EQpdCwTaP1kRj0L63ZsTD5S_l-b2K01WRzFAKsdr-sAAcXL7YS7k9XysRHWsJEa8OHv2xSIgqhUrBxPQefeU0EhvoY2HAneW_ssuqvalTEREf9F204STO-r6hmRpffMaNc4USAhcOrY-i6J5qDqP2h6LHs2Wr1Nsj6nBtXEL7U9wRNqoCGc5xVijH_3Ju_Rr997FpAyE6YsCbn8XEnK3x5lWyiCua46zaE61v6Az3vvDMRjloh-sjFX6OPO7w' \
-d '{
"id" : 1,
"name" : "namewe",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
}'
HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Length: 108
{
"id" : 1,
"name" : "namewe",
"address" : "address",
"lat" : 0.0,
"lng" : 0.0,
"draft" : true
}
6. Models
6.1. Assignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
objectId |
Long |
int64 |
||
assignmentId |
Long |
int64 |
||
activeCount |
Integer |
int32 |
6.2. Configuration
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accessible |
List of [long] |
int64 |
||
marked |
List of [long] |
int64 |
6.3. Event
Valid event object without id field
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
UUID |
uuid |
||
start |
Date |
date-time |
||
killAfter |
Date |
date-time |
||
name |
String |
|||
schemaId |
Long |
int64 |
6.4. EventMetadata
Contains list of sections
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
sectors |
6.5. GroupOfSeats
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
String |
|||
prefix |
String |
|||
seatPrefix |
String |
|||
parentId |
Long |
int64 |
||
type |
String |
Enum: SECTION, ROW, ENTRY, TABLE, |
||
ga |
Boolean |
|||
schemaId |
Long |
int64 |
||
pricingZoneId |
Long |
int64 |
6.6. Organization
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
String |
|||
publicKey |
UUID |
uuid |
||
privateKey |
UUID |
uuid |
||
domain |
String |
|||
autologinEnabled |
Boolean |
|||
appendDomainToLogin |
Boolean |
|||
type |
String |
Enum: VENUE, DEFAULT, |
6.7. PageEvent
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
totalElements |
Long |
int64 |
||
totalPages |
Integer |
int32 |
||
size |
Integer |
int32 |
||
content |
List of Event |
|||
number |
Integer |
int32 |
||
sort |
List of SortObject |
|||
first |
Boolean |
|||
last |
Boolean |
|||
numberOfElements |
Integer |
int32 |
||
pageable |
PageableObject |
|||
empty |
Boolean |
6.8. PageOrganization
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
totalElements |
Long |
int64 |
||
totalPages |
Integer |
int32 |
||
size |
Integer |
int32 |
||
content |
List of Organization |
|||
number |
Integer |
int32 |
||
sort |
List of SortObject |
|||
first |
Boolean |
|||
last |
Boolean |
|||
numberOfElements |
Integer |
int32 |
||
pageable |
PageableObject |
|||
empty |
Boolean |
6.9. PageSchema
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
totalElements |
Long |
int64 |
||
totalPages |
Integer |
int32 |
||
size |
Integer |
int32 |
||
content |
List of Schema |
|||
number |
Integer |
int32 |
||
sort |
List of SortObject |
|||
first |
Boolean |
|||
last |
Boolean |
|||
numberOfElements |
Integer |
int32 |
||
pageable |
PageableObject |
|||
empty |
Boolean |
6.10. PageVenue
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
totalElements |
Long |
int64 |
||
totalPages |
Integer |
int32 |
||
size |
Integer |
int32 |
||
content |
List of Venue |
|||
number |
Integer |
int32 |
||
sort |
List of SortObject |
|||
first |
Boolean |
|||
last |
Boolean |
|||
numberOfElements |
Integer |
int32 |
||
pageable |
PageableObject |
|||
empty |
Boolean |
6.11. PageableObject
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
offset |
Long |
int64 |
||
sort |
List of SortObject |
|||
paged |
Boolean |
|||
pageNumber |
Integer |
int32 |
||
pageSize |
Integer |
int32 |
||
unpaged |
Boolean |
6.12. PlainSeats
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
names |
List of [string] |
|||
ids |
List of [long] |
int64 |
||
x |
List of [integer] |
int32 |
||
y |
List of [integer] |
int32 |
||
rowIds |
List of [long] |
int64 |
||
sectorIds |
List of [long] |
int64 |
6.13. Price
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
X |
String |
||
eventId |
X |
UUID |
uuid |
6.14. PriceAssignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
capacity |
Integer |
int32 |
||
compositeKey |
X |
String |
||
price |
X |
Integer |
int32 |
|
properties |
Object |
6.15. PriceList
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
seats |
List of [array] |
|||
groupOfSeats |
List of [array] |
|||
prices |
List of Price |
6.16. PricingZone
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
String |
|||
schemaId |
Long |
int64 |
6.17. Row
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
X |
String |
||
seatName |
String |
|||
rowNumber |
String |
|||
sectorId |
Long |
int64 |
6.18. RowMetadata List of rows
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
key |
String |
|||
name |
String |
|||
seats |
6.19. Schema
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
String |
|||
externalId |
String |
|||
template |
Boolean |
|||
draft |
Boolean |
|||
gaCapacity |
Integer |
int32 |
||
seatsCapacity |
Integer |
int32 |
||
description |
String |
|||
preview |
UUID |
uuid |
||
archived |
Boolean |
6.20. Seat
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
String |
|||
accessible |
Boolean |
|||
hidden |
Boolean |
|||
marked |
Boolean |
|||
groupOfSeatsId |
Long |
int64 |
||
schemaId |
Long |
int64 |
||
pricingZoneId |
Long |
int64 |
||
externalId |
String |
6.21. SeatMetadata Array of SeatMetadata
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
key |
String |
|||
name |
String |
|||
x |
Integer |
int32 |
||
y |
Integer |
int32 |
||
ix |
Integer |
int32 |
||
iy |
Integer |
int32 |
6.22. Seatmap
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
rows |
List of Row |
|||
sectors |
List of Sector |
|||
plainSeats |
PlainSeats |
|||
configuration |
Configuration |
|||
background |
Object |
6.23. Sector
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
isGa |
Boolean |
|||
name |
X |
String |
||
x |
BigDecimal |
|||
y |
BigDecimal |
|||
guid |
UUID |
uuid |
||
angle |
Integer |
int32 |
||
type |
String |
6.24. SectorMetadata List of sections metadata
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
key |
String |
|||
name |
String |
|||
x |
Integer |
int32 |
||
y |
Integer |
int32 |
||
width |
Integer |
int32 |
||
height |
Integer |
int32 |
||
angle |
Integer |
int32 |
||
guid |
UUID |
uuid |
||
rows |
List of RowMetadata List of rows |
|||
id |
Long |
int64 |
||
shapes |
List of ShapeMetadata List of shapes |
6.25. SectorWithCoords
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
isGa |
Boolean |
|||
name |
X |
String |
||
x |
BigDecimal |
|||
y |
BigDecimal |
|||
guid |
UUID |
uuid |
||
left |
BigDecimal |
|||
top |
BigDecimal |
|||
angle |
Integer |
int32 |
||
width |
BigDecimal |
|||
height |
BigDecimal |
|||
type |
String |
|||
shapes |
List of Shape |
6.26. Selection
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
seats |
List of Assignment |
|||
groupOfSeats |
List of Assignment |
6.27. Shape
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
UUID |
uuid |
||
width |
BigDecimal |
|||
height |
BigDecimal |
|||
y |
BigDecimal |
|||
x |
BigDecimal |
|||
angle |
Integer |
int32 |
||
groupOfSeatsGuid |
UUID |
uuid |
||
order |
Integer |
int32 |
||
text |
String |
|||
textPosition |
String |
Enum: TOP, BOTTOM, LEFT, RIGHT, |
6.28. ShapeMetadata List of shapes
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
UUID |
uuid |
||
width |
Integer |
int32 |
||
height |
Integer |
int32 |
||
top |
Integer |
int32 |
||
left |
Integer |
int32 |
||
angle |
Integer |
int32 |
||
groupOfSeatsGuid |
UUID |
uuid |
||
order |
Integer |
int32 |
||
text |
String |
|||
textPosition |
String |
Enum: TOP, BOTTOM, LEFT, RIGHT, |
6.29. SortObject
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
direction |
String |
|||
nullHandling |
String |
|||
ascending |
Boolean |
|||
property |
String |
|||
ignoreCase |
Boolean |
6.30. StateAssignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
capacity |
Integer |
int32 |
6.31. StateSelection
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
groupOfSeats |
List of StateAssignment |
|||
seats |
List of StateAssignment |
6.32. Venue
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Long |
int64 |
||
name |
X |
String |
||
address |
X |
String |
||
lat |
Double |
double |
||
lng |
Double |
double |
||
draft |
Boolean |
6.33. VenueForWidget
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
guid |
UUID |
uuid |
||
name |
String |
|||
gaCapacity |
Integer |
int32 |
||
seatsCapacity |
Integer |
int32 |
||
seatmap |
Seatmap |
6.34. ZonesList
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
seats |
List of [array] |
|||
groupOfSeats |
List of [array] |
|||
zones |
List of PricingZone |
7. Renderer Resources
7.1. Class: SeatmapBookingRenderer
7.1.1. Hierarchy
-
Renderer
↳
SeatmapBookingRenderer
7.1.2. Table of contents
Constructors
Properties
Methods
7.1.3. Constructors
constructor
-
new SeatmapBookingRenderer(
element
,settings?
,tags?
)
Creates the booking renderer.
Parameters
Name | Type | Description |
---|---|---|
|
|
DOM element that will be a host element for the Renderer |
|
Renderer settings |
|
|
|
- |
Overrides
Renderer.constructor
7.1.4. Properties
seatToExtendedSeat
-
seatToExtendedSeat: (
seat
:ISeat
) =>IExtendedSeat
Type declaration
▸ (seat
): IExtendedSeat
Name | Type |
---|---|
|
|
IExtendedSeat
Inherited from
Renderer.seatToExtendedSeat
7.1.5. Methods
addGaToCart
▸ addGaToCart(ga
): void
Adds GA seats to cart programmatically.
Parameters
Name | Type | Description |
---|---|---|
|
|
GA cart item |
Returns
void
Remarks
This method can be used when onSectorClick
was fired
and developer wants to handle custom add GA seats control.
You can add desired quantity of GA tickets to the cart.
Example
renderer.addGaToCart({
id: 100500,
key: 'Table 2',
price: 200,
// quantity of GA tickets
count: 3
});
Inherited from
Renderer.addGaToCart
addSeatsToCart
▸ addSeatsToCart(seats
): void
Adds seats to cart programmatically.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of seats to add |
Returns
void
Remarks
This method is optional. In a common scenario the user adds available seats by clicking on them.
Example
renderer.addSeatsToCart([
{
id: 803,
key: 'Section 3;;3;;1',
price: 500
}
]);
Inherited from
Renderer.addSeatsToCart
clearCart
▸ clearCart(): void
Clears the internal cart state.
Returns
void
Inherited from
Renderer.clearCart
clearSectorHighlight
▸ clearSectorHighlight(): void
Returns
void
Inherited from
Renderer.clearSectorHighlight
destroy
▸ destroy(): void
Destroys variables, events and canvas layers
Returns
void
Inherited from
Renderer.destroy
disableSeatsByIds
▸ disableSeatsByIds(ids
): void
Marks seats as unavailable and removes them from cart.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of internal seat IDs |
Returns
void
Inherited from
Renderer.disableSeatsByIds
disableSeatsByKeys
▸ disableSeatsByKeys(keys
): void
Marks seats as unavailable and removes them from cart.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of composite seat keys |
Returns
void
Inherited from
Renderer.disableSeatsByKeys
disableSvgSectionsByIds
▸ disableSvgSectionsByIds(ids
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.disableSvgSectionsByIds
disableSvgSectionsByNames
▸ disableSvgSectionsByNames(names
, options?
): void
Parameters
Name | Type |
---|---|
|
|
|
|
|
|
Returns
void
Inherited from
Renderer.disableSvgSectionsByNames
enableSeatsByIds
▸ enableSeatsByIds(ids
): void
Marks disabled seats as available.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of internal seat IDs |
Returns
void
Inherited from
Renderer.enableSeatsByIds
enableSvgSectionsByIds
▸ enableSvgSectionsByIds(ids
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.enableSvgSectionsByIds
enableSvgSectionsByNames
▸ enableSvgSectionsByNames(names
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.enableSvgSectionsByNames
filterSeatsByIds
▸ filterSeatsByIds(ids
): void
Marks seats as filtered.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of internal seat IDs |
Returns
void
Inherited from
Renderer.filterSeatsByIds
filterSeatsByKeys
▸ filterSeatsByKeys(keys
): void
Marks seats as filtered.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of composite seat keys |
Returns
void
Inherited from
Renderer.filterSeatsByKeys
filterSvgSectionsByIds
▸ filterSvgSectionsByIds(ids
, options?
): void
Parameters
Name | Type |
---|---|
|
|
|
|
|
|
Returns
void
Inherited from
Renderer.filterSvgSectionsByIds
getCart
▸ getCart(): ICart
Retrieves the internal cart state.
Returns
ICart
Returns selected seats and GA ticket count
Remarks
Seatmap.pro doesn’t support any session mechanisms. Cart is always should be stored on the ticketing system side. For the state management reasons, the Renderer has internal selected seat representation.
Example
Example of cart object:
var cart = {
seats: [
{ id: 1389563, key: 'Section 1;;5;;14', price: 100 },
{ key: 'Table 3;;1;;1', price: 500 },
{ key: 'Section 2;;5;;1', price: 200 }
],
ga: [
{
id: 100500,
key: 'Table 2',
price: 200,
count: 1
},
{ key: 'Section 5', price: 100, count: 2 }
]
};
Inherited from
Renderer.getCart
getCategoryColor
▸ getCategoryColor(category
): undefined
| string
Returns category’s color
Parameters
Name | Type | Description |
---|---|---|
|
|
Category number |
Returns
undefined
| string
Inherited from
Renderer.getCategoryColor
getHeight
▸ getHeight(): number
Returns
number
Inherited from
Renderer.getHeight
getMarkedSeatsIds
▸ getMarkedSeatsIds(): number
[]
Returns
number
[]
Inherited from
Renderer.getMarkedSeatsIds
getMaxZoom
▸ getMaxZoom(): number
Returns the maximum zoom preset value.
Returns
number
Inherited from
Renderer.getMaxZoom
getMinZoom
▸ getMinZoom(): number
Returns the minimal zoom preset value.
Returns
number
Inherited from
Renderer.getMinZoom
getMode
▸ getMode(): undefined
| string
Returns
undefined
| string
Inherited from
Renderer.getMode
getPrices
▸ getPrices(): IColoredPrice
[]
Retrieves the available prices.
Returns
IColoredPrice
[]
Array of available prices
Example
Example of return value:
[
{ id: 63, name: '100', color: '#9C27B0' },
{ id: 64, name: '200', color: '#2196F3' }
];
Inherited from
Renderer.getPrices
getRowById
▸ getRowById(id
): IRowDTO
Parameters
Name | Type |
---|---|
|
|
Returns
IRowDTO
Row data
Inherited from
Renderer.getRowById
getRows
▸ getRows(): IRowDTO
[]
Returns
IRowDTO
[]
Rows data array
Inherited from
Renderer.getRows
getSeatIds
▸ getSeatIds(seats
): number
[]
Parameters
Name | Type |
---|---|
|
|
Returns
number
[]
Inherited from
Renderer.getSeatIds
getSeatSelection
▸ getSeatSelection(): IExtendedSeat
[]
Returns selected seats
Returns
IExtendedSeat
[]
Inherited from
Renderer.getSeatSelection
getSeats
▸ getSeats(): ISeatDTO
[]
Returns
ISeatDTO
[]
Seats data array
Inherited from
Renderer.getSeats
getSections
▸ getSections(): ISector
[]
Returns sections info
Returns
ISector
[]
Inherited from
Renderer.getSections
getSectionsWithCoords
▸ getSectionsWithCoords(): ISectionWithCoords
[]
Returns
ISectionWithCoords
[]
Inherited from
Renderer.getSectionsWithCoords
getSelectedGa
▸ getSelectedGa(): undefined
| ISector
Returns
undefined
| ISector
Inherited from
Renderer.getSelectedGa
getSvgSectionBySelection
▸ getSvgSectionBySelection(): ISectorDTO
[]
Returns
ISectorDTO
[]
Inherited from
Renderer.getSvgSectionBySelection
getVisibleSeats
▸ getVisibleSeats(): ISeat
[]
Returns only visible seats with coords relative to canvas
Returns
ISeat
[]
Inherited from
Renderer.getVisibleSeats
getWidth
▸ getWidth(): number
Returns
number
Inherited from
Renderer.getWidth
getZoom
▸ getZoom(): number
Returns current zoom value.
Returns
number
Inherited from
Renderer.getZoom
highlightSector
▸ highlightSector(id
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.highlightSector
initCart
▸ initCart(cart
): void
Initializes the internal cart state.
Parameters
Name | Type | Description |
---|---|---|
|
|
Cart state |
Returns
void
Remarks
In a case of page reload you should initialize the saved state with this method.
Cart initialization is available right after component initialization.
Sales page must save the cart state in the given format to support the page reload feature.
Example
var cart = {
seats: [
{
id: 1389563,
key: 'Section 1;;5;;14',
price: 100
},
{ key: 'Table 3;;1;;1', price: 500 },
{ key: 'Section 2;;5;;1', price: 200 }
],
ga: [
{
id: 100500,
key: 'Table 2',
price: 200,
count: 1
},
{ key: 'Section 5', price: 100, count: 2 }
]
};
renderer.initCart(cart);
Inherited from
Renderer.initCart
loadEvent
▸ loadEvent(eventId
, sectorId?
): Promise
<void
>
Loads event’s schema and prices.
Parameters
Name | Type | Description |
---|---|---|
|
|
Event GUID |
|
|
You can specify sector ID to show only specific sector |
Returns
Promise
<void
>
Resolves when the data fetching is completed
Example
var eventId = 'a4a75361-7823-4847-bf22-336843022e80';
renderer.loadEvent(eventId).then(function() {
renderer.initCart(cart);
});
removeFilter
▸ removeFilter(ids?
): void
Marks disabled seats as available.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of internal seat IDs |
Returns
void
Inherited from
Renderer.removeFilter
removeFilterSvgSectionsByIds
▸ removeFilterSvgSectionsByIds(ids?
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.removeFilterSvgSectionsByIds
removeGaFromCart
▸ removeGaFromCart(removedGa
): void
Removes GA seats from cart programmatically.
Parameters
Name | Type | Description |
---|---|---|
|
|
removed GA cart item |
Returns
void
Remarks
This method can be used when onSectorClick
was fired
and developer wants to handle custom remove GA seats control.
You can remove GA from cart.
Example
renderer.removeGaFromCart({
sectorId: 100500,
price: 200
});
Inherited from
Renderer.removeGaFromCart
removeSeatsFromCartByIds
▸ removeSeatsFromCartByIds(ids
): void
Removes seats from internal cart.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of internal seat IDs |
Returns
void
Inherited from
Renderer.removeSeatsFromCartByIds
removeSeatsFromCartByKeys
▸ removeSeatsFromCartByKeys(keys
): void
Removes seats from internal cart.
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of composite seat keys |
Returns
void
Inherited from
Renderer.removeSeatsFromCartByKeys
resetCategories
▸ resetCategories(): void
Returns
void
Inherited from
Renderer.resetCategories
seatKeysToIds
▸ seatKeysToIds(keys
): number
[]
Convert array of seat keys to array of seat ids
Parameters
Name | Type | Description |
---|---|---|
|
|
Array of composite seat keys |
Returns
number
[]
Inherited from
Renderer.seatKeysToIds
setExternalPrices
▸ setExternalPrices(seatsPrices?
): void
Sets external prices to seats
*
Parameters
Name | Type |
---|---|
|
|
Returns
void
Remarks
In case you need to use prices from external resources
you should execute this method.
External prices can be passed as an argument or as
a seatsPrices
property within the settings.
Inherited from
Renderer.setExternalPrices
setGaCategory
▸ setGaCategory(sectionId
, category
): void
Parameters
Name | Type |
---|---|
|
|
|
|
Returns
void
Inherited from
Renderer.setGaCategory
setGroupSize
▸ setGroupSize(groupSize
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.setGroupSize
setHeight
▸ setHeight(height
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.setHeight
setMode
▸ setMode(mode
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.setMode
setSeatSelection
▸ setSeatSelection(seats
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.setSeatSelection
setSeatsCategory
▸ setSeatsCategory(seats
, category
, color?
): void
Parameters
Name | Type |
---|---|
|
|
|
|
|
|
Returns
void
Inherited from
Renderer.setSeatsCategory
setSelectedGa
▸ setSelectedGa(ga?
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.setSelectedGa
updateSeatLocks
▸ updateSeatLocks(filter
): void
Updates seat lock states.
Parameters
Name | Type | Description |
---|---|---|
|
|
Function should return |
Returns
void
Example
For example, you can create handler to prevent selection of seats with different special state:
const handleCartChange = (cart, prevCart) => {
if (!cart.seats.length) {
// Unlock all the seats if the cart is empty
renderer.updateSeatLocks(s => false);
} else if (!prevCart || !prevCart.seats.length) {
// Lock seats with different special state
const seat = cart.seats[0];
renderer.updateSeatLocks(
s => (s.special && s.special.s1) !== (seat.special && seat.special.s1)
);
}
};
Inherited from
Renderer.updateSeatLocks
viewSection
▸ viewSection(section
): void
Parameters
Name | Type |
---|---|
|
|
Returns
void
Inherited from
Renderer.viewSection
zoomIn
▸ zoomIn(): void
Returns
void
Inherited from
Renderer.zoomIn
zoomOut
▸ zoomOut(): void
Returns
void
Inherited from
Renderer.zoomOut
7.2. Interface: IBookingRendererSettings
7.2.1. Hierarchy
-
IRendererSettings
↳
IBookingRendererSettings
7.2.2. Table of contents
Properties
7.2.3. Properties
debounceDelay
-
Optional
debounceDelay:number
Inherited from
IRendererSettings.debounceDelay
env
-
Optional
env:string
Environment (prod/stage)
Overrides
IRendererSettings.env
groupSize
-
Optional
groupSize:number
Inherited from
IRendererSettings.groupSize
height
-
Optional
height:number
Inherited from
IRendererSettings.height
lockedSeatsFilter
-
Optional
lockedSeatsFilter: (seat
:ISeat
) =>boolean
Type declaration
▸ (seat
): boolean
Name | Type |
---|---|
|
|
boolean
Inherited from
IRendererSettings.lockedSeatsFilter
onBeforeSeatDraw
-
Optional
onBeforeSeatDraw: (event
:IBeforeSeatDrawEvent
) =>ISeatStyle
Type declaration
▸ (event
): ISeatStyle
You can control seats' styling by returning custom style for each seat
Name | Type |
---|---|
|
|
ISeatStyle
Inherited from
IRendererSettings.onBeforeSeatDraw
onCartChange
-
Optional
onCartChange: (cart
:ICart
,prevCart?
:ICart
) =>void
Type declaration
▸ (cart
, prevCart?
): void
Fires when the cart was modified.
Name | Type |
---|---|
|
|
|
|
void
Remarks
Cart state is passed as a param to the handler (see ICart).
Inherited from
IRendererSettings.onCartChange
onPan
-
Optional
onPan: (delta
:IPoint
,isFinish?
:boolean
) =>void
Type declaration
▸ (delta
, isFinish?
): void
Fires while panning.
Name | Type |
---|---|
|
|
|
|
void
Inherited from
IRendererSettings.onPan
onRedrawEnd
-
Optional
onRedrawEnd: () =>void
Type declaration
▸ (): void
Fires when component full redrawing ends.
void
Inherited from
IRendererSettings.onRedrawEnd
onRedrawStart
-
Optional
onRedrawStart: () =>void
Type declaration
▸ (): void
Fires when component full redrawing starts.
void
Inherited from
IRendererSettings.onRedrawStart
onSeatDebouncedEnter
-
Optional
onSeatDebouncedEnter: (seat
:IExtendedSeat
) =>void
Type declaration
▸ (seat
): void
Same as onSeatMouseEnter
but with debounce.
Name | Type |
---|---|
|
|
void
Remarks
Seat is passed as a param to the handler (see IExtendedSeat).
Inherited from
IRendererSettings.onSeatDebouncedEnter
onSeatDeselect
-
Optional
onSeatDeselect: (seat
:IExtendedSeat
) =>boolean
|void
|Promise
<boolean
|void
>
Type declaration
▸ (seat
): boolean
| void
| Promise
<boolean
| void
>
Fires when the user deselects a seat.
Name | Type |
---|---|
|
|
boolean
| void
| Promise
<boolean
| void
>
Remarks
Seat is passed as a param to the handler (see IExtendedSeat).
To cancel seat deselection you can return false
or Promise resolving to false
.
Inherited from
IRendererSettings.onSeatDeselect
onSeatMouseEnter
-
Optional
onSeatMouseEnter: (seat
:IExtendedSeat
) =>void
Type declaration
▸ (seat
): void
Rises when the mouse pointer moves above a seat.
Name | Type |
---|---|
|
|
void
Remarks
Seat is passed as a param to the handler (see IExtendedSeat).
Inherited from
IRendererSettings.onSeatMouseEnter
onSeatMouseLeave
-
Optional
onSeatMouseLeave: () =>void
Type declaration
▸ (): void
Fires when the mouse pointer leaves a seat.
void
Inherited from
IRendererSettings.onSeatMouseLeave
onSeatSelect
-
Optional
onSeatSelect: (seat
:IExtendedSeat
) =>boolean
|void
|Promise
<boolean
|void
>
Type declaration
▸ (seat
): boolean
| void
| Promise
<boolean
| void
>
Fires when the user marks a seat as selected.
Name | Type |
---|---|
|
|
boolean
| void
| Promise
<boolean
| void
>
Remarks
Seat is passed as a param to the handler (see IExtendedSeat).
To cancel seat selection you can return false
or Promise resolving to false
.
Inherited from
IRendererSettings.onSeatSelect
onSeatSelectionChange
-
Optional
onSeatSelectionChange: () =>void
Type declaration
▸ (): void
Fires after seat selection was updated.
void
Inherited from
IRendererSettings.onSeatSelectionChange
onSeatsDeselect
-
Optional
onSeatsDeselect: (seats
:ISeat
[]) =>void
Type declaration
▸ (seats
): void
Fires when the user deselects a seat or seats.
Name | Type |
---|---|
|
|
void
Remarks
Seats are passed as a param to the handler (see ISeat).
Inherited from
IRendererSettings.onSeatsDeselect
onSeatsSelect
-
Optional
onSeatsSelect: (seats
:ISeat
[]) =>void
Type declaration
▸ (seats
): void
Fires when the user marks a seat or seats as selected.
Name | Type |
---|---|
|
|
void
Remarks
Seats are passed as a param to the handler (see ISeat).
Inherited from
IRendererSettings.onSeatsSelect
onSeatsSelectionChange
-
Optional
onSeatsSelectionChange: (seats
:ISeat
[]) =>void
Type declaration
▸ (seats
): void
Fires after seats selection was updated.
Name | Type |
---|---|
|
|
void
Inherited from
IRendererSettings.onSeatsSelectionChange
onSectionClick
-
Optional
onSectionClick: (section
:ISection
) =>void
Type declaration
▸ (section
): void
Fires when the user clicks on a section.
Name | Type |
---|---|
|
|
void
Remarks
Section is passed as a param to the handler (see ISection).
Inherited from
IRendererSettings.onSectionClick
onSectorClick
-
Optional
onSectorClick: (section
:ISection
) =>void
Type declaration
▸ (section
): void
Fires when the user clicks on a section.
Name | Type |
---|---|
|
|
void
Deprecated
Use onSectionClick instead
Inherited from
IRendererSettings.onSectorClick
onSectorMouseEnter
-
Optional
onSectorMouseEnter: (section
:ISection
) =>void
Type declaration
▸ (section
): void
Fires when the mouse pointer moves above a section.
Name | Type |
---|---|
|
|
void
Remarks
Section is passed as a param to the handler (see ISection).
Inherited from
IRendererSettings.onSectorMouseEnter
onSectorMouseLeave
-
Optional
onSectorMouseLeave: () =>void
Type declaration
▸ (): void
Fires when the mouse pointer leaves a section.
void
Inherited from
IRendererSettings.onSectorMouseLeave
onZoomEnd
-
Optional
onZoomEnd: (newZoom
:number
,oldZoom?
:number
) =>void
Type declaration
▸ (newZoom
, oldZoom?
): void
Fires after the zoom animation ended.
Name | Type |
---|---|
|
|
|
|
void
Inherited from
IRendererSettings.onZoomEnd
onZoomStart
-
Optional
onZoomStart: (newZoom
:number
,oldZoom
:number
) =>void
Type declaration
▸ (newZoom
, oldZoom
): void
Fires before the zoom animation started.
Name | Type |
---|---|
|
|
|
|
void
Inherited from
IRendererSettings.onZoomStart
padding
-
Optional
padding:number
Inherited from
IRendererSettings.padding
publicKey
-
Optional
publicKey:string
Public API key
seatSelectionMinZoom
-
Optional
seatSelectionMinZoom:number
Inherited from
IRendererSettings.seatSelectionMinZoom
seatsPrices
-
Optional
seatsPrices:ISeatPriceScheme
[]
Inherited from
IRendererSettings.seatsPrices
selectionLimit
-
Optional
selectionLimit:number
Inherited from
IRendererSettings.selectionLimit
theme
-
Optional
theme:IRendererTheme
Inherited from
IRendererSettings.theme
transformAnimationDuration
-
Optional
transformAnimationDuration:number
Inherited from
IRendererSettings.transformAnimationDuration
zoomAnimationDuration
-
Optional
zoomAnimationDuration:number
Inherited from
IRendererSettings.zoomAnimationDuration
8. API Licensing Agreement
This Customer Agreement (hereinafter – the "Agreement") sets out the terms and conditions of using the Seatmap.pro website (hereinafter "Terms of Use"), accessible at https://seatmap.pro (hereinafter, the "Website"). Before using the Website, the natural person (hereinafter "Customer") must read, agree with and accept these Terms of Use. If the Customer doesn’t accept the terms of this Agreement and shall not accept to be bound by all the terms of this Agreement, they should stop using the Website immediately.
This API licensing agreement (hereinafter referred to as the "Agreement") defines the access rights of the Customer (hereinafter referred to as "Licensee") over APIs, data and documentation provided and licensed by Seatmap.pro. By using Seatmap.pro APIs, the Customer is under obligaton to comply with the terms of the Agreement. If the Customer does not agree with the terms of the Agreement, they can not use APIs.
APIs are protected by copyright and international copyright agreements, as well as other intellectual property laws.
8.1. General provisions
-
An "application programming interface" or "API" is a set of libraries, tools, sample source codes, published specifications and documentation developed by Seatmap.pro. At its own discretion, Seatmap.pro may provide updates or API additions for Licensees.
-
The documentation includes (but is not limited to) the programmer’s manual, materials and other information needed for the use of APIs.
8.2. Licensing
-
Under the terms of this Agreement, Seatmap.pro grants the Licensee a limited, non-exclusive, non-transferable license (without the right to sublicense) to use APIs solely for the Licensee’s personal use (for the development of apps to work with Seatmap.pro products).
The Licensee may not distribute, license, or otherwise transfer APIs to third parties.
8.3. Other Rights and Restrictions
-
The Licensee may copy the APIs only for use under the terms of this Agreement.
-
Reverse engineering. The Licensee has no rights over the API source code except for the rights expressly granted to the Licensee by this Agreement. The Licensee is not entitled to process, decompile, modify, or disassemble APIs, or otherwise bring the APIs to a generally accepted form of submission, in whole or in part, except as expressly permitted by this Agreement or applicable law.
-
For the efficient use of API, additional development tools such as a compiler or other software (“Third-Party Software”) may be required. Licensee bears full responsibility for the purchase of this software and the necessary licenses. Seatmap.pro is not under any obligation and makes no warranties regarding the use of third-party software by the Licensee.
-
The Licensee is not entitled to sublicense their rights under this Agreement, except for the cases expressly provided in this Agreement. The Licensee may not use Seatmap.pro trademarks or trade names. Seatmap.pro reserves all rights not expressly granted herein.
-
The Licensee cannot obtain patent rights to APIs or applications developed using the Seatmap.pro API or APIs of other Seatmap.pro API licensees to create, use or sell any products or technologies.
8.4. Property
-
Seatmap.pro shall reserve the property rights, including all rights to patents, copyrights, trade secrets, trademark and other intellectual property rights to APIs and any changes thereto. Seatmap.pro has exclusive right to register any patents and copyrights. The Licensee recognizes that under this Agreement the Licensee does not have property rights over APIs, only the right to limited use under the terms of this Agreement.
8.5. Support
-
Seatmap.pro Customer Support does not provide technical support for the APIs under the terms of this Agreement and does not provide updates, bug fixes or API changes.
8.6. Confidentiality
-
APIs contain valuable information about the company and commercial secrets belonging to Seatmap.pro. These remain the property of Seatmap.pro. Licensees are required to avoid disclosing this information and avoid unauthorized use of APIs.
-
The Licensee shall not disclose, advertise or publish the terms of this Agreement without the prior written consent of Seatmap.pro. Any press release or publication relevant to this Agreement is subject to prior review and written approval by Seatmap.pro.
8.7. No warranty
-
APIs and documentation are provided "as is" without warranty of any kind. Seatmap.pro does not warrant that APIs and documentation are suitable for use by Licensee and free of defects or errors. In addition, Seatmap.pro does not guarantee continuous and uninterrupted access to APIs and documentation and makes no warranties or representations regarding the results of their use.
8.8. Limitation of Liability
-
The Licensee is fully liable for any damage to their computer system or loss of data resulting from the download or use of APIs. Seatmap.pro shall not be liable for any special, incidental, consequential damages (including, but not limited to, loss of profits, suspension or termination of work, failure or breakdown of the computer, loss of information or any other damages, including financial damages, arising from the use of or inability to use APIs or the provision or lack of provision of support services), even if Seatmap.pro has been notified of the possibility of such damage.
8.9. Indemnity
-
Licensee shall not hold Seatmap.pro, its customers, suppliers or other partners and employees liable for any losses, claims or demands, reasonable legal fees arising from the use of APIs.
8.10. Term and Termination of the Agreement
-
In the event that the Licensee fails to comply with any of the terms of this Agreement, they will be held liable to Seatmap.pro for any loss or damage arising from the breach of terms.
-
Upon termination of this Agreement, the Licensee shall immediately terminate the use of APIs, delete all copies of APIs and documentation or return them to Seatmap.pro.
-
Seatmap.pro shall be entitled to verify compliance of the Licensee with the terms of the Agreement. The Licensee, at the request of Seatmap.pro, is obliged to facilitate this.
8.11. Miscellaneous
-
Violation or failure to comply with the terms of this Agreement shall result in its termination.
-
Seatmap.pro shall be entitled to suspend (or terminate), at its own discretion and without notice, the Licensee’s access to the Service in the event that the terms of the Agreement are violated.
-
By installing, copying or otherwise using Seatmap.pro APIs, the Licensee acknowledges that that they have read, understood and agree to the conditions specified above.
9. Contact us
For any questions please mail us hello@seatmap.pro