For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recordings

List recordings

get

Returns a paginated list of recordings. Members see only their own recordings; admins see all recordings in the account.

Authorizations
AuthorizationstringRequired

API token obtained from Screendesk account settings

Query parameters
pageinteger · min: 1Optional

Page number (defaults to 1)

Default: 1
Responses
200

A paginated list of recordings

application/json
get/recordings

Get a recording

get

Returns a single recording by UUID.

Authorizations
AuthorizationstringRequired

API token obtained from Screendesk account settings

Path parameters
uuidstring · uuidRequired

The recording's UUID

Responses
200

Recording details

application/json
uuidstring · uuidOptional
titlestring · nullableOptional
summarystring · nullableOptional
descriptionstring · nullableOptional
console_logsstring · nullableOptional

Raw console log output captured during the recording

get/recordings/{uuid}

Update a recording

patch

Updates a recording's title, summary, or description. Admin only.

Authorizations
AuthorizationstringRequired

API token obtained from Screendesk account settings

Path parameters
uuidstring · uuidRequired

The recording's UUID

Body
Responses
200

Updated recording

application/json
uuidstring · uuidOptional
titlestring · nullableOptional
summarystring · nullableOptional
descriptionstring · nullableOptional
console_logsstring · nullableOptional

Raw console log output captured during the recording

patch/recordings/{uuid}

Download a recording video

get

Streams the best available video file for a recording through the Screendesk API. The response body is the video binary, not JSON.

Screendesk returns the edited file when available, then the processed file, and finally the original upload. Use this endpoint for API/backend downloads such as curl, scripts, or server-side integrations.

Authorizations
AuthorizationstringRequired

API token obtained from Screendesk account settings

Path parameters
uuidstring · uuidRequired

The recording's UUID

Responses
200

The recording video file

Responsestring · binary
get/recordings/{uuid}/download

Last updated

Was this helpful?