Webhooks
Get webhook settings
Returns account-level webhook URL, signing secret, and enabled event types.
GET
/v1/webhooksAuthorization
bearerAuth AuthorizationBearer <token>
Use an account API key in the Authorization header: Authorization: Bearer f_....
In: header
curl -X GET "https://example.com/v1/webhooks"{ "data": { "webhook_url": "string", "webhook_signing_secret": "string", "webhook_enabled_events": [ "string" ] }}{ "error": { "type": "authentication_error", "code": "invalid_api_key", "message": "A valid Furnace API key is required" }}{ "error": { "type": "rate_limit_error", "code": "rate_limit_exceeded", "message": "Rate limit exceeded for this account" }}{ "error": { "type": "api_error", "code": "internal_error", "message": "Internal server error" }}