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
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.
Updated location information
Updated budget allocation
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
}
}