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' \
  --header 'X-Kinetic-Key: <api-key>' \
  --data '
{
  "status": "completed"
}
'
{}

Authorizations

X-Kinetic-Key
string
header
required

Your Kinetic API key

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

The response is of type Response Mark Execution Completed Api Executions Execution Uuid Complete Post · object.