Create Outbound Webhook
neuron_create_outbound_webhookRegister a new outbound webhook that sends HTTP POST requests to an external URL when specified bot events occur. Supported events: message.created, message.assistant, conversation.created, conversation.escalated, conversation.closed, bot.paused, bot.resumed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Destination URL that will receive webhook event payloads (HTTPS recommended) | |
| name | Yes | Human-readable name for the outbound webhook | |
| botId | Yes | Unique identifier (UUID) of the bot to create the outbound webhook for | |
| eventTypes | Yes | Array of event types that should trigger this webhook | |
| filterPrompt | No | Optional LLM prompt to selectively filter which events are forwarded (e.g., 'only forward escalations about billing') |