API DocsRESTRun service

StopRun

Set the stop time of a run to the current time. To set the stop time of a run to an arbitrary time see `UpdateRun`.

PATCH
/api/v2/runs:stop

Request Body

application/jsonRequired

The request for a call to RunService_StopRun to stop a run.

runId
Required
string

curl -X PATCH "<API_URL>/api/v2/runs:stop" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "runId": "string"
  }'

A successful response.

{}