Public API
  1. Users
Public API
  • Welcome to the deskbird Public API
  • Users
    • Lists company users
      GET
    • Lists single company user
      GET
  • Bookings
    • Lists company bookings
      GET
    • Lists single company booking
      GET
  • Groups
    • Lists company user groups
      GET
    • Lists single company user group
      GET
  • Resources
    • Lists company resources
      GET
  • Offices
    • Lists company offices
      GET
    • Check User into Office
      POST
  1. Users

Lists single company user

GET
/users/{userId}
Users
Returns a single company user by userId

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
userId
string 
required
Header Params
Authorization
string 
required
Public API key for the company

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://connect.deskbird.com/users/' \
--header 'Authorization;'

Responses

🟢200OK
application/json
Return of a single user
Body
optional
Example:
{"id":"7f1bc237-3a9b-4f9d-a09f-6ae1ad1553a4","firstName":"John","lastName":"Doe","email":"johnDoe@mycompany.com","companyId":"1","role":"user","primaryOfficeId":"1"}
Example
{
    "id": "7f1bc237-3a9b-4f9d-a09f-6ae1ad1553a4",
    "firstName": "John",
    "lastName": "Doe",
    "email": "johnDoe@mycompany.com",
    "companyId": "1",
    "role": "user",
    "primaryOfficeId": "1"
}
🟠401Unauthorized
🟠403Forbidden
Previous
Lists company users
Next
Bookings
Built with