Create a new Location
POST/location
Creates a new Location and attaches it to the requested Company.
Request
- application/json
Body
Input data
Possible values: <= 255 characters
The name of the Location.
Possible values: <= 65535 characters
The description of the Location.
Possible values: <= 9999999999
The maximum capacity of people that can be at this Location. This number is strictly positive or 0 signaling an infinite capacity.
Possible values: >= -85
and <= 85
The latitude in LatLng format.
Possible values: >= -180
and <= 180
The longitude in LatLng format.
Possible values: <= 65536 characters
The address of this Location. This is free text, so it can be as large or small as desired.
Whether this Location should appear in the public listing.
The key of the seating chart. See Seats.io for more information.
Responses
- 200
- 403
- 404
- 406
Location created.
- application/json
- Schema
- Example (from schema)
Schema
The guid of the Location
The guid of the Company of the Location.
Possible values: <= 255 characters
The name of the Location.
Possible values: <= 65535 characters
The description of the Location.
Possible values: <= 9999999999
The maximum capacity of people that can be at this Location. This number is strictly positive or 0 signaling an infinite capacity.
Possible values: >= -85
and <= 85
The latitude in LatLng format.
Possible values: >= -180
and <= 180
The longitude in LatLng format.
Possible values: <= 65536 characters
The address of this Location. This is free text, so it can be as large or small as desired.
Whether this Location should appear in the public listing.
The key of the seating chart. See Seats.io for more information.
The guid of the parent Location. In the case that the Location has a parent.
Whether the Location provides seating or not.
The time it was created.
The time it was last updated.
The time it was deleted.
{
"guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"company_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"capacity": 0,
"latitude": 0,
"longitude": 0,
"address": "string",
"public": true,
"seats_chart_key": "string",
"parent_guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"seated": true,
"created_at": "2023-08-01T14:40:24+00:00",
"updated_at": "2023-08-01T14:40:24+00:00",
"deleted_at": "2023-08-01T14:40:24+00:00"
}
Unauthorized. You do not have permission to manage the Locations of the Company.
- application/json
- Schema
- Example (from schema)
Schema
The general error code.
The exact reason of failure.
{
"error_code": "string",
"error_description": "string"
}
Company not found.
- application/json
- Schema
- Example (from schema)
Schema
The general error code.
The exact reason of failure.
{
"error_code": "string",
"error_description": "string"
}
Request is invalid, see error context for validation errors.
- application/json
- Schema
- Example (from schema)
Schema
The general error code.
The exact reason of failure.
{
"error_code": "string",
"error_description": "string"
}