---
title: "Run Update Webhook"
method: POST
path: "{$request.body#/webhook}"
tags: ["Callbacks"]
---

# Run Update Webhook

`POST {$request.body#/webhook}` (webhook)

This endpoint is called by the workflow runner to update the status of a run.

## Payload

- WorkflowRunWebhookBody
  - `run_id` string, required
  - `status` 'not-started' | 'running' | 'uploading' | 'success' | 'failed' | 'started' | 'queued' | 'timeout' | 'cancelled', required
  - `live_status` string, nullable, required
  - `progress` number
  - `outputs` WorkflowRunOutputModel[]
    - `id` string, uuid, required
    - `output_id` string, nullable
    - `run_id` string, uuid, required
    - `data` object, required
    - `node_meta` unknown, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `type` string, nullable
    - `node_id` string, nullable

## Acknowledgement `200`

Successful Response

- WorkflowRunWebhookResponse
  - `status` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/comfydeploy/apis/comfydeploy-api.md) · [All operations](https://skmtc.dev/comfydeploy/apis/comfydeploy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/comfydeploy/comfydeploy-api/revisions/e5a45141a616/schema)
