Overview
Get a list of available webhook event types that can be used for testing. This endpoint returns all supported webhook events with their identifiers and descriptions, useful for webhook configuration and testing.Use Cases
- Webhook Setup: Discover available event types during webhook configuration
- Testing Preparation: Identify which events to test for your integration
- Documentation: Reference event types for webhook development
- Validation: Verify supported events before creating webhooks
Response Structure
The response includes an array of available webhook events with their details:Testing Example
Event Categories
Prospect Events
Events related to prospect interactions and status changes:prospect.qualified
- Prospect marked as qualifiedprospect.responded
- Prospect responded to outreachprospect.disqualified
- Prospect marked as disqualifiedprospect.paused
- Prospect conversation pausedprospect.resumed
- Prospect conversation resumed
Campaign Events
Events related to campaign lifecycle and status:campaign.started
- Campaign activated and startedcampaign.paused
- Campaign pausedcampaign.resumed
- Campaign resumedcampaign.completed
- Campaign completedcampaign.deleted
- Campaign deleted
Message Events
Events related to message sending and responses:message.sent
- Message sent to prospectmessage.failed
- Message sending failedmessage.received
- Response received from prospectmessage.scheduled
- Message scheduled for sending
Connection Events
Events related to LinkedIn connection activities:connection.sent
- Connection request sentconnection.accepted
- Connection request acceptedconnection.rejected
- Connection request rejectedconnection.withdrawn
- Connection request withdrawn
Agent Events
Events related to agent status and health:agent.status_changed
- Agent status changedagent.health_alert
- Agent health alert triggeredagent.limits_reached
- Agent daily limits reachedagent.offline
- Agent went offline
Integration Examples
Event Selection for Webhook Creation
Dynamic Event Configuration
Best Practices
- Event Selection: Choose only the events your application needs
- Category Filtering: Use categories to organize event subscriptions
- Validation: Always validate event IDs before webhook creation
- Documentation: Keep a reference of event types for your team
- Testing: Use this endpoint to plan your webhook testing strategy
Next Steps
After getting the list of test events:- Select Events: Choose relevant events for your integration
- Get Examples: Use
/webhooks/test/example/{event}
to see payload examples - Create Webhook: Create webhook with selected events
- Test Integration: Use
/webhooks/test
to send test events - Monitor: Set up monitoring for webhook delivery and processing
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.