Users
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
curl -X GET 'https://app.screendesk.io/api/v2/users?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
},
"users": [
{
"email": "text",
"name": "text",
"has_avatar": true,
"role": "text",
"notifications": {
"notify_first_view": "Enabled",
"notify_new_account_recording": "Enabled",
"notify_new_recording": "Enabled"
},
"created_at": "2025-12-28T04:30:46.861Z",
"updated_at": "2025-12-28T04:30:46.861Z"
}
]
}curl -X GET 'https://app.screendesk.io/api/v2/users/[email protected]' \
-H 'Authorization: Bearer YOUR_BEARER_TOKEN' \
-H 'Content-Type: application/json'
{
"email": "text",
"name": "text",
"has_avatar": true,
"role": "text",
"notifications": {
"notify_first_view": "Enabled",
"notify_new_account_recording": "Enabled",
"notify_new_recording": "Enabled"
},
"created_at": "2025-12-28T04:30:46.861Z",
"updated_at": "2025-12-28T04:30:46.861Z"
}