Public API
  1. Resources
Public API
  • Welcome to the deskbird Public API
  • Users
    • Lists company users
      GET
    • Lists single company user
      GET
  • Bookings
    • Lists company bookings
      GET
    • Creates booking
      POST
    • Lists single company booking
      GET
    • Updates booking
      PATCH
    • Cancels booking
      PATCH
    • Check in to the booking
      PATCH
    • Early release the booking
      PATCH
  • 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. Resources

Lists company resources

GET
/resources
Returns company resources within a provided filter

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Request Code 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/resources' \
--header 'Authorization;'

Responses

🟢200OK
application/json
List of resources matching the provided filters
Body

Example
{
    "data": [
        {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "type": "flexDesk",
            "capacity": 1,
            "name": "Flex Desk 1",
            "description": "Flex Desk 1",
            "status": "active",
            "zoneId": "12",
            "officeId": "13",
            "accessInfo": {},
            "createdAt": "2021-01-01T00:00:00.000Z",
            "updatedAt": "2021-01-01T00:00:00.000Z"
        }
    ],
    "offset": 0,
    "limit": 10,
    "total": 100
}
🟠401Unauthorized
🟠403Forbidden
Previous
Resources
Next
Lists company offices
Built with