List Webhooks
Webhooks
List Webhooks
GET
List Webhooks
Lists all webhook configurations for your API key.
Overview
The list webhooks endpoint returns all webhook configurations associated with your API key. Use this to monitor webhook health, check subscription status, and manage your webhook configurations.Authentication
Bearer token with
read:webhooks scopeQuery Parameters
Filter webhooks by company ID. If provided, returns only webhooks associated with that specific company (excludes global webhooks). If omitted, returns all webhooks including global ones. Useful for ATS integrations managing multiple companies.
Response
Array of webhook configuration objects
Total number of webhook configurations
Webhook Configuration Object
Unique identifier for the webhook
The API key ID this webhook belongs to
Company ID this webhook is associated with. Null if webhook receives events for all companies (global webhook).
The endpoint URL receiving webhook notifications
Human-readable name for the webhook
Description of the webhook’s purpose
Custom headers configured for this webhook. Sensitive header values are
masked.
Array of subscribed event type labels (e.g., “interview.completed”)
Whether the webhook is currently active
Maximum retry attempts for failed deliveries
Request timeout in milliseconds
Current count of consecutive delivery failures
ISO 8601 timestamp when circuit breaker was triggered (null if closed)
ISO 8601 timestamp when webhook was created
ISO 8601 timestamp when webhook was last updated
Example Request
Example Response
Monitoring Webhook Health
Check webhook health by examiningconsecutiveFailures and circuitOpenedAt:
Related
Create Webhook
Create a new webhook configuration
Webhooks Guide
Learn about webhook events and payloads