Skip to main content
Update the details of a draft event in the sandbox environment. You can modify any field before converting the draft to a real event.

Path Parameters

draft_event_id
number
required
The unique identifier of the draft event to update

Request Body

Include only the fields you want to update. All fields from the create endpoint are supported.
name
string
Updated event name
num_people
number
Updated attendee count
formatted_locations
array
Updated location information
event_dates
array
Updated event dates
agenda
array
Updated agenda items
budget_breakdown
object
Updated budget allocation

Response Format

Returns the updated draft event object with all current values.
{
  "draft_event_id": 456,
  "uuid": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Updated Conference Name",
  "num_people": 450,
  "updated_at": "2025-11-21T11:30:00Z"
}

Example Request

{
  "num_people": 450,
  "budget_breakdown": {
    "flight": 55000,
    "venue": 110000,
    "fb": 35000,
    "transport": 12000,
    "activities": 18000,
    "av": 22000,
    "other": 8000
  }
}