v1

latestOpenAPI 3.1.02026-07-22285495.1 KB
Sessions

Add files to a session

Use this endpoint to add files to a session for a specific event type in your Zuddl organization.

Required API key scopes: WRITE

This API can only be called with an access key that was generated for Backend usage.

post/v1/events/{eventId}/sessions/{sessionId}/files

Path parameters

eventIdstring required

Unique identifier of the event

sessionIdstring required

Unique identifier of the session

Request body

fileNamestring required

File name

fileUrlstring required

Url of the file

Example request

[
  {
    "fileName": "Presentation",
    "fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
  }
]

Response

Files added successfully

fileIdstring uuid

Unique identifier of the file

fileNamestring

File name

fileUrlstring

Url of the file

Example response

{
  "fileId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
  "fileName": "Presentation",
  "fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
}