Test runs

List test runs for a given agent, cursor-paginated. Each item carries aggregate counters over its child sessions (Total/Success/Failed/Processing).

GET
/test-runs
AuthorizationBearer <token>

JWT Authorization header using Bearer scheme

In: header

Query Parameters

agentId?string
Formatuuid
cursor?string
limit?integer
Default20
Formatint32

Response Body

application/json

curl -X GET "https://api.speaknode.com/api/test-runs"
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "agent_id": "2b1e3b65-2c04-4fa2-a2d7-467901e98978",
      "created_by_id": "9377d689-01fb-4abf-8450-3368d2c1924f",
      "created_by_email": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "total_sessions": 0,
      "success_sessions": 0,
      "failed_sessions": 0,
      "processing_sessions": 0,
      "test_names": [
        "string"
      ]
    }
  ],
  "next_cursor": "string"
}