Skip to main content
GET
/
runs
/
{run_id}
Get run status
curl --request GET \
  --url https://api.mobileboost.io/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "runId": "abc123",
  "status": "completed",
  "totalTests": 2,
  "succeededTests": [
    {
      "id": "test1",
      "title": "Login flow",
      "status": "succeeded",
      "recording": "https://app.mobileboost.io/recording/abc123/runs/test1",
      "interactionLogs": "https://api.mobileboost.io/suite/abc123/run/test1/interaction_logs?organisation_id=org123"
    }
  ],
  "failedTests": [
    {
      "id": "test2",
      "title": "Checkout flow",
      "status": "failed",
      "recording": "https://app.mobileboost.io/recording/abc123/runs/test2",
      "interactionLogs": "https://api.mobileboost.io/suite/abc123/run/test2/interaction_logs?organisation_id=org123"
    }
  ],
  "blockedTests": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

run_id
string
required

Response

200 - application/json

Successful response

runId
string

The ID of the run.

status
string

Overall status of the run (e.g. pending, running, completed).

totalTests
integer

Total number of tests in the run.

succeededTests
TestRunResult · object[]

Tests that succeeded.

failedTests
TestRunResult · object[]

Tests that failed.

blockedTests
TestRunResult · object[]

Tests that were blocked.