How to update a session's schedule

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

  • date must be in yyyy-MM-dd format

  • startTime and endTime must be in HH:MM 24-hour format

  • endTime must not be before startTime

  • All three fields can be updated independently — you don't need to send all of them together