Core resources


Administration


Booking flow

Calendar event updates

Snapshots of each time a calendar event is updated

The calendar event update object

Attributes

iduuid

Unique identifier

calendar_event_iduuid
calendar_events.id

Identifier of the related calendar event

next_product_iduuid
products.id

Unit the calendar event was booked for after the update

prev_product_iduuid
products.id

Unit the calendar event was booked for before the update

user_iduuid | null
user_profiles.user_id

Identifier of the user that made the update

created_attimestamp with time zone

Creation timestamp

next_intervaldaterange

Event interval after the update

next_status"CANCELLED" | "TENTATIVE" | "CONFIRMED"

Status of the calendar event after the update

prev_intervaldaterange

Event interval before the update

prev_status"CANCELLED" | "TENTATIVE" | "CONFIRMED"

Status of the calendar event before the update

The calendar event update object
{
"id": "00000000-0000-0000-0000-000000000000",
"calendar_event_id": "00000000-0000-0000-0000-000000000000",
"next_product_id": "00000000-0000-0000-0000-000000000000",
"prev_product_id": "00000000-0000-0000-0000-000000000000",
"user_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2024-11-23T09:43:17.050Z",
"next_interval": null,
"next_status": "CANCELLED",
"prev_interval": null,
"prev_status": "CANCELLED"
}

List calendar event updates

Filters

idFilter<>

Unique identifier

calendar_event_idFilter<>

Identifier of the related calendar event

next_product_idFilter<>

Unit the calendar event was booked for after the update

prev_product_idFilter<>

Unit the calendar event was booked for before the update

user_idFilter<>

Identifier of the user that made the update

created_atFilter<>

Creation timestamp

next_intervalFilter<>

Event interval after the update

next_statusFilter<>

Status of the calendar event after the update

prev_intervalFilter<>

Event interval before the update

prev_statusFilter<>

Status of the calendar event before the update

Responses

200

A list of calendar event updates with the selected columns

206

Partial Content

GET/calendar_event_updates
curl -X GET "https://api.bookingmood.com/v1/calendar_event_updates?select=*" \
  -H "Authorization: Bearer YOUR_API_KEY"