Skip to main content
GET
/
v1
/
api
/
webhooks
List all webhooks for this API key
curl --request GET \
  --url https://backend.blooio.com/v1/api/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "webhooks": [
    {
      "webhook_url": "https://example.com/mywebhook",
      "webhook_type": "message",
      "created_at": 1703123457000,
      "deprecated_at": null,
      "valid_until": -1,
      "last_triggered": 1703123458000,
      "failure_count": 0,
      "is_active": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

List of webhooks.

webhooks
object[]

Array of webhook configurations.