API DocsRESTRun service

GetRun

Retrieve a run.

GET
/api/v2/runs/{runId}

Path Parameters

runId
Required
string

The ID of the run to retrieve.

curl -X GET "<API_URL>/api/v2/runs/string" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "run": {
    "runId": "string",
    "createdDate": "2019-08-24T14:15:22Z",
    "modifiedDate": "2019-08-24T14:15:22Z",
    "createdByUserId": "string",
    "modifiedByUserId": "string",
    "organizationId": "string",
    "startTime": "2019-08-24T14:15:22Z",
    "stopTime": "2019-08-24T14:15:22Z",
    "isPinned": true,
    "name": "string",
    "description": "string",
    "tags": [
      "string"
    ],
    "defaultReportId": "string",
    "clientKey": "string"
  }
}