POST /api/fire-webhook
Fires an HTTP POST to an external URL with the conversation transcript. Called by the agent runtime when a Webhook node is reached during a conversation.Request
| Field | Type | Required | Description |
|---|---|---|---|
url | string | ✅ | The external webhook URL to POST to |
conversation | array | ✅ | Conversation transcript |
Response
| Field | Type | Description |
|---|---|---|
status | number | HTTP status code returned by the external URL |
ok | boolean | Whether the request succeeded (status 2xx) |
Error responses
| Status | Description |
|---|---|
400 | Invalid or missing URL |
500 | Network error or unexpected failure |