Skip to main content
POST
/
bookings
/
update-notes
Update Booking Notes
curl --request POST \
  --url http://localhost:3000/api/bookings/update-notes \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "notes": "<string>"
}
'
{
  "success": true
}

Body

application/json
id
string
required

The ID of the booking

notes
string
required

The updated notes for the booking

Response

Notes updated successfully

success
boolean
required

Whether the operation was successful