List webhook endpoints
GET /v1/webhook-endpoints — Every webhook endpoint in the workspace (at most 10 — no pagination). Signing secrets are never included. Requires scope webhooks:read.
Every webhook endpoint in the workspace (at most 10 — no pagination). Signing secrets are never included.
Requires scope: webhooks:read. Plan entitlement: public_api (Creator and Pro).
API key (bf_live_… / bf_test_…) as a Bearer token.
In: header
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/webhook-endpoints"{ "data": [ { "id": "string", "url": "string", "status": "ACTIVE", "disabled_reason": "string", "event_types": [ "contact.created" ], "consecutive_failures": 0, "last_success_at": "2019-08-24T14:15:22Z", "last_failure_at": "2019-08-24T14:15:22Z", "previous_secret_expires_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]}Get API usage GET
GET /v1/usage — Current billing-period API usage: requests used/remaining against the plan's monthly quota, the reset instant, and the per-key burst limit. Polling…
Create a webhook endpoint POST
POST /v1/webhook-endpoints — Register a public HTTPS URL for event delivery. The URL is SSRF-screened, then must accept a SIGNED endpoint.test event with 2xx…