GET
/
v1
/
api
/
config
/
webhook
Get the current webhook URL
curl --request GET \
  --url https://backend.blooio.com/v1/api/config/webhook \
  --header 'Authorization: Bearer <token>'
{
  "webhook_url": "https://example.com/mywebhook",
  "updated_at": 1703123457000
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header as Bearer YOUR_API_KEY.

Response

Current webhook URL.

webhook_url
string<uri> | null

The current webhook URL or null if not set.

Example:

"https://example.com/mywebhook"

updated_at
integer

Unix timestamp (ms) when the webhook URL was last updated.