Skip to main content
POST
/
api
/
workflows
/
{workflow_uuid}
/
run
Run Workflow
curl --request POST \
  --url https://api.example.com/api/workflows/{workflow_uuid}/run \
  --header 'Content-Type: application/json' \
  --data '
{
  "input_payload": {}
}
'
{
  "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

workflow_uuid
string
required

Body

application/json
input_payload
Input Payload · object

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