Loading...
Retrieve a paginated list of recordings for the authenticated user's account
Page number for pagination
Successful response
curl -X GET 'https://app.screendesk.io/api/v1/recordings?page=1' \ -H 'Authorization: Bearer YOUR_BEARER_TOKEN' \ -H 'Content-Type: application/json'
{ "pagination": {} }
Retrieve details of a specific recording by its UUID
UUID of the recording
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'
{ "uuid": "text", "title": "text", "description": "text", "created_at": "2024-11-21T12:37:24.246Z", "updated_at": "2024-11-21T12:37:24.246Z", "vendor": "text", "ip_address": "text", "timezone": "text", "network_type": "text", "isp": "text", "platform": "text", "customer_email": "text", "recording_type": "text", "recording_source": "text", "url": "text", "user_email": "text", "user_name": "text" }