Skip to main content
POST
/
api
/
webhook
/
workflow
Workflow engine webhook ingress
curl --request POST \
  --url https://your-instance.example.com/api/webhook/workflow \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookId": "wh_64d2f9c5e8a1d4e001a0b1c3",
  "source": "zillow",
  "lead": {
    "name": "Alex Nguyen",
    "email": "alex.nguyen@example.com",
    "phone": "+14155551234"
  }
}
'
{
  "success": true,
  "message": "Webhook accepted",
  "data": {
    "webhookId": "wh_64d2f9c5e8a1d4e001a0b1c3",
    "matchedCount": 2
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

webhookId is required and must match a WebhookTrigger.data.webhookId on at least one workflow in the caller's org. Every other property is forwarded verbatim as the trigger node's payload output.

webhookId
string
required

Identifier configured on a workflow WebhookTrigger node; the caller's org is scanned for matching triggers to enqueue.

Response

Webhook accepted and matching workflows enqueued

success
enum<boolean>
required
Available options:
true
data
object
required
message
string