Skip to main content
POST
/
v1
/
events
/
{eventId}
/
sessions
/
{sessionId}
/
files
Add files to a session
curl --request POST \
  --url https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/files \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "fileName": "Presentation",
    "fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
  }
]'
{
  "fileId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
  "fileName": "Presentation",
  "fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
}

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[]
fileName
string
required

File name

Minimum length: 1
Example:

"Presentation"

fileUrl
string
required

Url of the file

Example:

"https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"

Response

Files added successfully

Files of the session

fileId
string<uuid>

Unique identifier of the file

Example:

"d5e31ba5-2d1e-4918-bb60-dd1514b4b397"

fileName
string

File name

Example:

"Presentation"

fileUrl
string

Url of the file

Example:

"https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"

⌘I