Creates a new venue (location) for the organization. A venue contains one or more spaces and defines operating hours, address, and venue type. The venue label must be unique within the organization.
OAuth2 authentication for Boseat API
Display name of the venue. This is the public-facing name shown to users.
"Downtown Event Center"
URL-friendly slug used to identify the venue in URLs and API calls. Must be unique within the organization. Typically lowercase with hyphens.
"downtown-event-center"
Type of venue, which determines available features and booking rules. Different venue types may have different space configurations and product options.
coworking, hotel, event_space, sports_facility, podcast_studio, meeting_center, conference_center, restaurant, retail_space, generic "event_space"
Physical address of the venue including street, city, postal code, and country. Used for location display and mapping.
Operating hours for the venue. Defines when the venue is open for bookings. Must include at least one day. Each day specifies opening and closing times.
[
{
"day": "monday",
"open": "09:00",
"close": "18:00"
},
{
"day": "tuesday",
"open": "09:00",
"close": "18:00"
}
]Additional metadata for the venue. Can include integration-specific data like calendar IDs, external system references, or custom configuration.
{
"import": "calendarId",
"googleCalendarId": "primary"
}Venue successfully created and returned with all details including spaces and media
Display name of the venue
"Downtown Event Center"
Physical address of the venue including street address, city, postal code, and country
URL-friendly slug used to identify the venue. Used in URLs and API calls.
"downtown-event-center"
Type of venue, which determines available features, space configurations, and booking rules
coworking, hotel, event_space, sports_facility, podcast_studio, meeting_center, conference_center, restaurant, retail_space, generic "coworking"
List of spaces available within this venue. Each space can be booked independently and may have different capacities and features.
Operating hours for the venue, defining when bookings are available. Each entry specifies a day of the week with opening and closing times.
[
{
"day": "monday",
"open": "09:00",
"close": "18:00"
},
{
"day": "tuesday",
"open": "09:00",
"close": "18:00"
}
]Additional metadata for the venue. May include integration data, external system references, or custom configuration.
{
"import": "calendarId",
"googleCalendarId": "primary"
}Media files (images, videos) associated with the venue. Used for display in booking interfaces and marketing materials.