Skip to main content

Outgoing Webhook

Will call your backend via webhook using a POST HTTP Request with a JSON body, you will receive information on which node of the graph made the actual call.

You can use this to follow up on workflow execution, and call back tracker API.

The request is sent with a hard-coded timeout of 1 second: if your backend does not answer within that time, the node fails.

Inputs

Tracker UUIDrequired

ID of the current workflow execution (plain text), forwarded in the request payload as tracker_uuid.

Trigger

Optional. An event that will trigger hook call (accepts a trigger, an integer or a plain text value).

Parameters

URL
URL of your backend

Request payload

Sent as the JSON body of the POST request.

tracker_uuid

Tracker ID, see: tracker API.

workflow_uuid
Workflow ID.
hook_uuid

Hook ID, a given workflow can contains more than one hook.


Example:
{
"tracker_uuid": "xxx-yyy-zzz",
"workflow_uuid": "aaa-bbb-ccc",
"hook_uuid": "ggg-kkk-lll"
}