Blooio API Reference
Webhooks

Update a webhook

Update a webhook's configuration.

PATCH
/webhooks/{webhookId}

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Path Parameters

webhookId*string

Webhook ID

Match^wh_[a-zA-Z0-9]+$

Request Body

application/json

webhook_type?string
Value in"message" | "status" | "all"
valid_until?integer
Formatint64
deprecated?boolean

Set to true to deprecate, false to undeprecate

Response Body

application/json

application/json

application/json

application/json

curl -X PATCH "https://backend.blooio.com/v2/api/webhooks/wh_abc123def456" \  -H "Content-Type: application/json" \  -d '{}'
{
  "webhook_id": "string",
  "webhook_url": "http://example.com",
  "webhook_type": "message",
  "scope": "api_key",
  "api_key_name": "string",
  "integration_name": "string",
  "created_at": 0,
  "deprecated_at": 0,
  "valid_until": 0,
  "last_triggered": 0,
  "failure_count": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}