Skip to main content
POST
/
v1
/
event
/
{eventId}
/
agenda-drafts
/
create
Create an agenda draft
curl --request POST \
  --url https://public-api.sessionboard.com/v1/event/{eventId}/agenda-drafts/create \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "event_id": 123,
  "name": "<string>",
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "admin_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.sessionboard.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-access-token
string
header
required

Organization API token. Generate from Organization Settings → API Tokens.

Path Parameters

eventId
integer
required

The event ID.

Body

application/json
name
string
required

Draft name.

description
string

Optional description.

Response

Draft created

An agenda draft workspace for planning session schedule changes before committing them to the live event.

id
string<uuid>
event_id
integer
name
string
description
string
status
enum<string>
Available options:
draft,
committed
created_at
string<date-time>
updated_at
string<date-time>
admin_url
string<uri> | null

Deep link to this entity in the Sessionboard admin UI.