Last updated 1 month ago
Retrieve a paginated list of recordings for the authenticated user's account
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": { "next_page": 0, "prev_page": 0, "last_page": 0, "page": 0, "items": 0, "pages": 0, "from": 0, "to": 0, "count": 0 } }
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'
{ "id": 0, "uuid": "text", "title": "text", "description": "text", "created_at": "2024-12-03T17:58:49.984Z", "updated_at": "2024-12-03T17:58:49.984Z", "vendor": "text", "ip_address": "text", "timezone": "text", "network_type": "text", "isp": "text", "platform": "text", "impressions_count": 0, "customer_email": "text", "duration": 0, "recording_type": "text", "recording_source": "text", "url": "text", "user_email": "text", "user_name": "text" }