Last updated 1 month ago
Search for a specific user by their email
Successful response
curl -X GET 'https://app.screendesk.io/api/v2/users/search?email=user@example.com' \ -H 'Authorization: Bearer YOUR_BEARER_TOKEN' \ -H 'Content-Type: application/json'
{ "email": "text", "name": "text", "has_avatar": false, "role": "text", "notifications": { "notify_first_view": "Enabled", "notify_new_account_recording": "Enabled", "notify_new_recording": "Enabled" }, "created_at": "2024-11-21T13:33:48.786Z", "updated_at": "2024-11-21T13:33:48.786Z" }
Retrieve a paginated list of users for the authenticated user's account
curl -X GET 'https://app.screendesk.io/api/v2/users?page=1' \ -H 'Authorization: Bearer YOUR_BEARER_TOKEN' \ -H 'Content-Type: application/json'
{ "pagination": {}, "users": [ { "email": "text", "name": "text", "has_avatar": false, "role": "text", "notifications": { "notify_first_view": "Enabled", "notify_new_account_recording": "Enabled", "notify_new_recording": "Enabled" }, "created_at": "2024-11-21T13:33:48.786Z", "updated_at": "2024-11-21T13:33:48.786Z" } ] }