Skip to main content

Post to Webhook

The Post to Webhook step sends a JSON payload to an external URL. Use it to connect automations to systems that are not available as built-in output steps.

Configuration​

FieldRequiredDescription
Target URLYesHTTPS endpoint that receives the webhook request.
PayloadNoJSON object to send. Supports variables.

Input Variables​

The Payload field can include variables as JSON string values, for example {"title":"{{chat1.title}}","body":"{{chat1.completion}}"}.

Output Variables​

This step does not expose reusable output variables.

Example​

Send a generated summary to an external system with payload:

{
"title": "{{chat1.title}}",
"body": "{{chat1.completion}}",
"source": "{{githubIssue.url}}"
}