Skip to main content
POST
/
workflows
/
{workflowId}
/
rerun
/
{executionId}
Rerun a single workflow execution
curl --request POST \
  --url https://production.runalloy.com/workflows/{workflowId}/rerun/{executionId} \
  --header 'Authorization: <authorization>' \
  --header 'x-api-version: <x-api-version>'
{
  "message": "success",
  "executionId": "37e974f0-5d0c4035"
}

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Path Parameters

workflowId
string
required

The Id of the workflow you want to find logs for

executionId
string
required

The Id of the execution to rerun. This can be retrieved from the GET Workflow Logs endpoint

Response

200 - application/json

200

message
string
Example:

"success"

executionId
string
Example:

"37e974f0-5d0c4035"

I