BookingVenues
Booking venue configuration.
Fields
| Field | Type | Required | Version | Description |
|---|---|---|---|---|
id |
integer | Yes | 1.1 | Unique venue identifier |
name |
string | Yes | 1.1 | Venue name |
businessUnitId |
integer | Yes | 1.1 | Reference to BusinessUnit |
customerId |
integer | Yes | 1.1 | Reference to Customer |
description |
string | No | 1.1 | Venue description |
active |
boolean | No | 1.1 | Venue active status |
Example
{
"id": 1,
"name": "Main Dining Room",
"businessUnitId": 10,
"customerId": 12345,
"description": "Primary dining area with 20 tables",
"active": true
}
Example - Multiple Venues
[
{
"id": 1,
"name": "Main Dining Room",
"businessUnitId": 10,
"customerId": 12345,
"description": "Primary dining area with 20 tables",
"active": true
},
{
"id": 2,
"name": "Private Dining",
"businessUnitId": 10,
"customerId": 12345,
"description": "Private room for events, seats up to 12",
"active": true
},
{
"id": 3,
"name": "Terrace",
"businessUnitId": 10,
"customerId": 12345,
"description": "Outdoor seating, seasonal",
"active": true
}
]
Related Entities
- Customer - Parent customer/tenant
- BusinessUnit - Parent business unit/location
- Bookings - Bookings at venue
- BookingScenario - Scenarios for venue