Core resources


Administration


Booking flow

Webhook notifications

Notifications sent and scheduled per webhook

The webhook notification object

Attributes

iduuid

Unique identifier

webhook_iduuid
webhooks.id

Identifier of the webhook this notification is related to

created_attimestamp with time zone

Creation timestamp

updated_attimestamp with time zone

Last modification timestamp

event_typetext

Event this notification is for

payloadjsonb

JSON payload that is sent along with this notification

responsetext | null
statustext

Notification status. Either pending, sent or error

triesinteger
The webhook notification object
{
"id": "00000000-0000-0000-0000-000000000000",
"webhook_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2024-05-11T17:33:04.236Z",
"updated_at": "2024-05-11T17:33:04.236Z",
"event_type": "",
"payload": {},
"response": "",
"status": "pending",
"tries": 0
}

List webhook notifications

Filters

idFilter<uuid>

Unique identifier

webhook_idFilter<uuid>

Identifier of the webhook this notification is related to

created_atFilter<timestamp with time zone>

Creation timestamp

updated_atFilter<timestamp with time zone>

Last modification timestamp

event_typeFilter<text>

Event this notification is for

payloadFilter<jsonb>

JSON payload that is sent along with this notification

responseFilter<text>
statusFilter<text>

Notification status. Either pending, sent or error

triesFilter<integer>

Responses

200

A list of webhook notifications with the selected columns

206

Partial Content

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