Skip to main content
POST
/
v1
/
admin
/
bookings
/
{id}
/
notes
Add a booking note
curl --request POST \
  --url https://{operatorDomain}/v1/admin/bookings/{id}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "body": "Customer requested late check-in"
}
'
{
  "data": {}
}

Authorizations

Authorization
string
header
required

Staff session or API token issued by your Voyant app.

Path Parameters

id
string
required

Body

application/json
body
string
required
Example:

"Customer requested late check-in"

Response

201 - application/json

Created note

data
object