Core resources
Administration
Booking flow
Private notes send around some calendar event
id
uuid
Unique identifier
created_at
timestamp with time zone
Creation timestamp
updated_at
timestamp with time zone
Last modification timestamp
note
text
The note itself
{"id": "00000000-0000-0000-0000-000000000000","author_id": "00000000-0000-0000-0000-000000000000","calendar_event_id": "00000000-0000-0000-0000-000000000000","created_at": "2024-11-21T09:16:59.169Z","updated_at": "2024-11-21T09:16:59.169Z","note": ""}
id
Filter<>
Unique identifier
author_id
Filter<>
Identifier of the user that created the note
calendar_event_id
Filter<>
Identifier of the related calendar event
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
note
Filter<>
The note itself
200
A list of calendar event notes with the selected columns
206
Partial Content
GET
/calendar_event_notes
curl -X GET "https://api.bookingmood.com/v1/calendar_event_notes?select=*" \ -H "Authorization: Bearer YOUR_API_KEY"
Partial<CalendarEventNote>
| Array<Partial<CalendarEventNote>>
201
The newly created calendar event notes with the selected columns
POST
/calendar_event_notes
curl -X POST "https://api.bookingmood.com/v1/calendar_event_notes" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '[]'
id
Filter<>
Unique identifier
author_id
Filter<>
Identifier of the user that created the note
calendar_event_id
Filter<>
Identifier of the related calendar event
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
note
Filter<>
The note itself
204
The deleted calendar event notes with the selected columns
DELETE
/calendar_event_notes
curl -X DELETE "https://api.bookingmood.com/v1/calendar_event_notes" \ -H "Authorization: Bearer YOUR_API_KEY"
id
Filter<>
Unique identifier
author_id
Filter<>
Identifier of the user that created the note
calendar_event_id
Filter<>
Identifier of the related calendar event
created_at
Filter<>
Creation timestamp
updated_at
Filter<>
Last modification timestamp
note
Filter<>
The note itself
Partial<CalendarEventNote>
204
The updated calendar event notes with the selected columns
PATCH
/calendar_event_notes
curl -X PATCH "https://api.bookingmood.com/v1/calendar_event_notes" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{}'