Public API
  1. Bookings
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. Bookings

Check in to the booking

PATCH
/bookings/{bookingId}/checkIn
Bookings
Check in to the booking

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
bookingId
string 
required
The ID of the booking
Example:
fc0f4648-1c38-4e95-bba6-b397c2a458ee
Header Params
Authorization
string 
required
Public API key for the company
Body Params application/json
resourceId
string 
optional
The UUID of the resource for check-in (optional)
Example:
123e4567-e89b-12d3-a456-426614174000
Example
{
    "resourceId": "123e4567-e89b-12d3-a456-426614174000"
}

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 PATCH 'https://connect.deskbird.com/bookings//checkIn' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "resourceId": "123e4567-e89b-12d3-a456-426614174000"
}'

Responses

🟢200OK
This response does not have a body.
🟠401Unauthorized
🟠403Forbidden
Previous
Cancels booking
Next
Early release the booking
Built with