LogoLogo
HomepageScreendesk DocsChangelogPricingContact
v1
v1
  • Overview
  • Screendesk API
    • Overview
    • Authentication
    • Errors
    • API Reference
      • Recordings
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Screendesk API
  2. API Reference

Recordings

PreviousAPI Reference

Last updated 7 months ago

Was this helpful?

GET List recordings

get

Retrieve a paginated list of recordings for the authenticated user's account

Authorizations
Query parameters
pageintegerOptional

Page number for pagination

Responses
200
Successful response
application/json
401
Unauthorized
get
curl -X GET 'https://app.screendesk.io/api/v1/recordings?page=1' \
-H 'Authorization: Bearer YOUR_BEARER_TOKEN' \
-H 'Content-Type: application/json'
{
  "pagination": {
    "next_page": null,
    "prev_page": null,
    "last_page": 1,
    "page": 1,
    "items": 1,
    "pages": 1,
    "from": 1,
    "to": 1,
    "count": 1
  }
}

GET Get a specific recording

get

Retrieve details of a specific recording by its UUID

Authorizations
Path parameters
uuidstringRequired

UUID of the recording

Responses
200
Successful response
application/json
401
Unauthorized
404
Recording not found
application/json
get
curl -X GET 'https://app.screendesk.io/api/v1/recordings/696cfd3b-b579-45a7-b58a-88ba0984a42b' \
-H 'Authorization: Bearer YOUR_BEARER_TOKEN' \
-H 'Content-Type: application/json'
{
  "id": 1,
  "uuid": "text",
  "title": "text",
  "description": "text",
  "created_at": "2025-05-09T07:33:38.993Z",
  "updated_at": "2025-05-09T07:33:38.993Z",
  "vendor": "text",
  "ip_address": "text",
  "timezone": "text",
  "network_type": "text",
  "isp": "text",
  "platform": "text",
  "impressions_count": 1,
  "customer_email": "text",
  "duration": 1,
  "recording_type": "text",
  "recording_source": "text",
  "url": "text",
  "user_email": "text",
  "user_name": "text"
}
  • GETGET List recordings
  • GETGET Get a specific recording