Skip to main content
POST
/
api
/
executions
/
{execution_uuid}
/
complete
Mark Execution Completed
curl --request POST \
  --url https://api.example.com/api/executions/{execution_uuid}/complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "completed"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

kinetic-api-key
string | null

Path Parameters

execution_uuid
string
required

Body

application/json

Payload for marking an execution as complete/failed.

status
enum<string>
required
Available options:
completed,
failed
outputs
Outputs · object
nSteps
integer | null
nAgentActions
integer | null
nScreenshots
integer | null
outputUrl
string | null
finishedAt
string<date-time> | null

Response

Successful Response