Comment on page
GET - List all recordings
get
/api/v1/recordings
List all recordings
curl -X GET \
-H "Authorization: Bearer <access_token>" \
"https://app.screendesk.io/api/v1/recordings?page=2"
fetch('https://app.screendesk.io/api/v1/recordings?page=2', {
headers: {
'Authorization': 'Bearer <access_token>',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))