How to update a session's basic info
Use this guide when you need to update a session's title, description, or abstract.
Prerequisites
-
Your API key
-
The session ID (
id) to update
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 "title=Opening Keynote — Updated" \
-F "description=Updated description for the opening keynote session."
Notes
-
Only include the fields you want to change — other fields remain unchanged
-
title,description, andabstractcan be updated independently