How to update a session's schedule
Use this guide when you need to reschedule a session — changing its date, start time, or end time.
Request
Bash
curl -X POST "https://your-event-domain.com/api/v2/sessions/set" \
-H "Authorization: Bearer your_api_key_here" \
-F "event_id=7" \
-F "id=42" \
-F "date=2030-06-16" \
-F "startTime=11:00" \
-F "endTime=12:30"
Notes
-
datemust be inyyyy-MM-ddformat -
startTimeandendTimemust be inHH:MM24-hour format -
endTimemust not be beforestartTime -
All three fields can be updated independently — you don't need to send all of them together