Create a draft event in the sandbox environment. Draft events are used to collect event details before sending RFPs to venues.
Request Body
Name of the event (e.g., “Annual Conference 2027”)
Array of location objects containing city, state, country, and coordinates
Number of attendees expected
Array of date objects with date/startDate/endDate and times
Whether the event spans multiple days
Type of venue (e.g., “hotel”, “conference center”, “boutique hotel”)
Room block requirements by date with room types (Single, Double, Suite, etc.)
Array of agenda items with room requirements, AV needs, and F&B requirements
Budget allocation for flight, venue, F&B, transport, activities, AV, and other
ISO 8601 date for when decision needs to be made
Array of custom questions to ask venues
Array of custom concessions or clauses to request
Email of the user creating the event
{
"draft_event_id": 456,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"org_id": 123,
"name": "Annual Conference 2027",
"num_people": 400,
"formatted_locations": [
{
"city": "Austin",
"state": "Texas",
"country": "United States",
"formatted_address": "Austin, TX, USA",
"place_id": "ChIJLwPMoJm1RIYRetVp1EtGm10",
"coordinates": {
"lat": 30.267153,
"lng": -97.743057
}
}
],
"created_at": "2025-11-21T10:00:00Z",
"is_multi_day": true,
"is_northstar_event": false
}
Example Request
{
"org_id": 123,
"name": "Annual Conference 2027",
"formatted_locations": [
{
"city": "Austin",
"state": "Texas",
"country": "United States",
"formatted_address": "Austin, TX, USA",
"place_id": "ChIJLwPMoJm1RIYRetVp1EtGm10",
"coordinates": {
"lat": 30.267153,
"lng": -97.743057
}
}
],
"num_people": 400,
"event_dates": [
{
"startDate": "2027-03-15",
"endDate": "2027-03-17"
}
],
"is_multi_day": true,
"venue_type": "hotel",
"user_email": "[email protected]"
}