---
title: "Reset a workflow to re-run from after a specific step"
method: POST
path: "/workflow/{id}/reset"
---

# Reset a workflow to re-run from after a specific step

`POST /workflow/{id}/reset`

Resets a workflow execution to the point after a completed step, creating a new run that replays from that point. The current execution is terminated.

## Path parameters

- `id` string, required

## Request body

- object
  - `stepName` string, required — The name of the step to reset after
  - `reason` string — Optional reason for the reset

## Response `200`

The workflow was reset successfully

- object
  - `workflowId` string — The original workflow ID
  - `runId` string — The run ID of the new execution created by the reset

## Other responses

- `400` — Invalid request body or query (validation failed)
- `404` — Workflow execution, workflow type, or catalog not found
- `409` — Step has not completed yet (conflict with current workflow state)
- `500` — Internal server error (e.g. Temporal connection failure)

## Changes

- **2026-03-13** `0f0e49049ef1` — 1 breaking, 5 info
  - the response's body type changed from no type to `object` for status `400`
  - endpoint reactivated
  - removed `#/components/schemas/ValidationErrorResponse, #/components/schemas/ErrorResponse` from the response body `oneOf` list for the response status `400`
  - added the optional property `error` to the response with the `400` status
  - …2 more

[Change history](https://skmtc.dev/growthxai/apis/output-ai-api/changes/workflow/:id/reset/post.md)

---

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