Core resources


Administration


Booking flow

Product calendar logs

Logs for each time the ical feed of a unit is read by an external platform

The product calendar log object

Attributes

idbigint

Unique identifier

product_iduuid
products.id

Identifier of the related unit

created_attimestamp with time zone

Creation timestamp

paramsjsonb

Params of the request

referrertext

Referrer of the request

statustext

Status of the request

The product calendar log object
{
"id": 0,
"product_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2024-05-11T05:24:18.725Z",
"params": {},
"referrer": "",
"status": "success"
}

List product calendar logs

Filters

idFilter<bigint>

Unique identifier

product_idFilter<uuid>

Identifier of the related unit

created_atFilter<timestamp with time zone>

Creation timestamp

paramsFilter<jsonb>

Params of the request

referrerFilter<text>

Referrer of the request

statusFilter<text>

Status of the request

Responses

200

A list of product calendar logs with the selected columns

206

Partial Content

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