Create or update booking
POST
/meetingspace/booking
Booking
Last modified:2025-05-29 13:03:16
x-usage:admin
For cancellations, set is_active to false.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/meetingspace/booking' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"start_datetime": "2025-02-24T15:00:00-08:00",
"end_datetime": "2025-02-24T15:30:00-08:00",
"meeting_space_id": "0a8c781d-bd46-4615-8f6f-bd329a55eb4d",
"attendees": [
{
"name": "string",
"email": "user@example.com",
"phone": "string"
}
],
"created_by_name": "string",
"created_by_email": "user@example.com",
"created_by_phone_no": "string",
"is_active": true,
"unlock_key": "string",
"external_id": "string"
}'
Request
Body Params application/json