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-11-21T14:08:16.754Z",
"updated_at": "2024-11-21T14:08:16.754Z",
"event_type": "",
"payload": {},
"response": "",
"status": "pending",
"tries": 0
}

List webhook notifications

Filters

idFilter<>

Unique identifier

webhook_idFilter<>

Identifier of the webhook this notification is related to

created_atFilter<>

Creation timestamp

updated_atFilter<>

Last modification timestamp

event_typeFilter<>

Event this notification is for

payloadFilter<>

JSON payload that is sent along with this notification

responseFilter<>
statusFilter<>

Notification status. Either pending, sent or error

triesFilter<>

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"