Skip to main content
POST
/
v1
/
events
/
{eventId}
/
sessions
/
{sessionId}
/
speakers
Add speakers to a session
curl --request POST \
  --url https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/speakers \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "speakerId": "d812a64f-8865-4289-9024-9a120792c3d8",
    "speakerOrder": 1
  }
]
'
{
  "timestamp": "2023-11-07T05:31:56Z",
  "message": "<string>",
  "description": "<string>",
  "errors": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.zuddl.com/llms.txt

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

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Unique identifier of the event

Pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
sessionId
string
required

Unique identifier of the session

Body

application/json
speakerId
string<uuid>
required

Unique identifier of the speaker

Minimum string length: 1
Example:

"d812a64f-8865-4289-9024-9a120792c3d8"

speakerOrder
integer<int32>

Order of the speaker in the session

Example:

1

Response

Speakers added successfully