Webhooks
List Webhooks
Retrieve all registered webhook endpoints for the authenticated user.
Response Data: Returns a list of webhook objects containing:
- webhook_id: Unique identifier for each webhook
- webhook_url: The URL endpoint for receiving webhooks
- events: Array of subscribed event types
- status: Current webhook status (active, inactive, disabled)
- created_at: Registration timestamp
Webhook Statuses:
- active: Webhook is active and receiving events
- inactive: Webhook is temporarily disabled
- disabled: Webhook is permanently disabled due to failures
Available Events:
- memory_processing_started: Triggered when memory processing begins
- memory_completed: Triggered when memory processing completes successfully
- memory_failed: Triggered when memory processing fails
Use Cases:
- Review all registered webhook endpoints
- Monitor webhook status and health
- Audit webhook configurations
- Manage webhook subscriptions
Response Format: Returns a simple success response with webhook data array. No pagination is currently implemented.
get/api/v1/webhooks
Response
List of registered webhooks
Changes
No recorded changes to this endpoint across all 1 revision of this API.