> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tigyai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhook Payloads

> Context variables available in webhook nodes and the data Tig.ai sends after a call

Tig.ai executes **webhook nodes** asynchronously after a workflow run completes. The payload is user-configurable: you define the JSON payload template in the workflow and can reference the run's context variables.

***

## How webhooks work

1. A call completes (or a run finishes)
2. Tig.ai executes any `webhook` nodes in the workflow asynchronously
3. The payload template is rendered with the run's context and sent as a JSON `POST` (or your configured method) to your endpoint
4. Non-200 responses are logged but do not block or retry by default (configure `retry_config` to change this)

***

## Payload context variables

The following variables are available in your `payload_template` using double-brace syntax (e.g. `{{workflow_run_id}}`):

| Variable                            | Type           | Description                                                               |
| ----------------------------------- | -------------- | ------------------------------------------------------------------------- |
| `workflow_run_id`                   | integer        | ID of the completed run                                                   |
| `workflow_run_name`                 | string         | Name of the run                                                           |
| `workflow_id`                       | integer        | ID of the workflow                                                        |
| `workflow_name`                     | string         | Name of the workflow                                                      |
| `call_time`                         | string         | ISO-8601 UTC timestamp of when the run was created                        |
| `initial_context`                   | object         | Context passed when the call was initiated                                |
| `gathered_context`                  | object         | Data extracted during the call by agent nodes                             |
| `gathered_context.call_disposition` | string         | Final call outcome (see [Call disposition](#call-disposition))            |
| `cost_info`                         | object         | Call cost breakdown                                                       |
| `cost_info.call_duration_seconds`   | number         | Call duration in seconds                                                  |
| `annotations`                       | object         | QA analysis results (if a `qa` node is configured)                        |
| `recording_url`                     | string \| null | Public download URL for the call recording                                |
| `transcript`                        | array          | Complete call transcript as messages with `role`, `timestamp`, and `text` |
| `transcript_url`                    | string \| null | Public download URL for the call transcript                               |

### Call disposition

The final outcome of the call is available as `{{gathered_context.call_disposition}}`.

<Note>
  Tig.ai always includes a top-level `call_disposition` field in the delivered payload. If your template doesn't set one, it is added automatically from `gathered_context.call_disposition`; if your template sets it explicitly, your value is kept.
</Note>

### Example payload template

```json theme={null}
{
  "run_id": "{{workflow_run_id}}",
  "customer": "{{initial_context.customer_name}}",
  "outcome": "{{gathered_context.resolution}}",
  "disposition": "{{gathered_context.call_disposition}}",
  "duration": "{{cost_info.call_duration_seconds}}",
  "recording": "{{recording_url}}"
}
```

***

## Authentication

Webhook requests support the following authentication methods, configured via a stored credential:

| Type            | Description                                         |
| --------------- | --------------------------------------------------- |
| `NONE`          | No authentication                                   |
| `API_KEY`       | Sends the key in a custom header (e.g. `X-API-Key`) |
| `BEARER_TOKEN`  | Sends `Authorization: Bearer <token>`               |
| `BASIC_AUTH`    | HTTP Basic authentication (username + password)     |
| `CUSTOM_HEADER` | Any custom header key-value pair                    |

***

## Receiving webhooks

Your endpoint should:

* Accept `POST` requests with `Content-Type: application/json`
* Respond with a `2xx` status code promptly (within 30 seconds)
* Handle duplicate deliveries idempotently (retries may deliver the same payload more than once)

### Minimal example receiver (Python)

```python theme={null}
from fastapi import FastAPI, Request

app = FastAPI()

@app.post("/webhook/tig")
async def handle_tig_webhook(request: Request):
    payload = await request.json()
    run_id = payload.get("run_id")
    outcome = payload.get("outcome")
    # process the call result...
    return {"status": "ok"}
```

***

## Webhook node in a workflow definition

See [Workflow Definition Schema](/developer/workflow-schema#webhook-node) for the full configuration reference.

```json theme={null}
{
  "id": "webhook-1",
  "type": "webhook",
  "position": { "x": 600, "y": 0 },
  "data": {
    "name": "Notify CRM",
    "enabled": true,
    "http_method": "POST",
    "endpoint_url": "https://your-service.com/webhook/tig",
    "payload_template": {
      "run_id": "{{workflow_run_id}}",
      "customer": "{{initial_context.customer_name}}",
      "outcome": "{{gathered_context.resolution}}"
    }
  }
}
```
