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"
  }
]'
This response does not have an example.

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Unique identifier of the event

sessionId
string
required

Unique identifier of the session

Body

application/json · object[]

The body is of type object[].

Response

200

Speakers added successfully