Blooio API Reference
Webhooks

List webhooks

List all webhooks for the organization.

GET
/webhooks

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Response Body

application/json

application/json

curl -X GET "https://backend.blooio.com/v2/api/webhooks"
{
  "webhooks": [
    {
      "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
}