Skip to main content
POST
/
api
/
executions
/
{execution_uuid}
/
retry
Retry Execution
curl --request POST \
  --url https://api.example.com/api/executions/{execution_uuid}/retry
{
  "execution_uuid": "<string>",
  "workflow_version_uuid": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "workflow_uuid": "<string>",
  "workflow_name": "<string>",
  "status": "queued",
  "input_payload": "<unknown>",
  "duration_ms": 123,
  "n_steps": 123,
  "n_agent_actions": 123,
  "n_screenshots": 123,
  "output_url": "<string>",
  "video_url": "<string>",
  "logs_url": "<string>"
}

Headers

kinetic-api-key
string | null

Path Parameters

execution_uuid
string
required

Response

Successful Response

execution_uuid
string
required
workflow_version_uuid
string
required
created_at
string<date-time> | null
updated_at
string<date-time> | null
workflow_uuid
string | null
workflow_name
string | null
status
enum<string> | null
Available options:
queued,
running,
paused,
completed,
failed
input_payload
unknown
duration_ms
integer | null
n_steps
integer | null
n_agent_actions
integer | null
n_screenshots
integer | null
output_url
string | null
video_url
string | null
logs_url
string | null