Logo
Akamai APIs API Documentation

List test runs

GET https://{{host}}/test-management/v3/test-runs

Lists test runs submitted in your organization. The response is an array of objects, each keyed by testRunId with details and status of each test run.

 

Body PARAM

Key Datatype Required Description 
accountSwitchKey
string (Optional) For customers who manage more than one account, this [runs the operation from another account](https://techdocs.akamai.com/developer/docs/manage-many-accounts-with-one-api-client). The Identity and Access Management API provides a [list of available account switch keys](https://techdocs.akamai.com/iam-api/reference/get-client-account-switch-keys).



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "testRuns": [ { "completedDate": "2022-01-27T04:36:00+0000", "functional": { "status": "COMPLETED" }, "note": "Test a change on staging that is implemented in config_user10 Version 15.", "purgeInfo": { "status": "COMPLETED" }, "status": "COMPLETED", "submittedBy": "jsmith@akamai.com", "submittedDate": "2022-01-27T04:34:15+0000", "targetEnvironment": "STAGING", "testRunId": 1 }, { "completedDate": "2022-01-31T13:49:59+0000", "functional": { "status": "COMPLETED" }, "note": "Test a change on staging that is implemented in config_user11 Version 15.", "purgeInfo": { "status": "COMPLETED" }, "status": "COMPLETED", "submittedBy": "jsmith@akamai.com", "submittedDate": "2022-01-31T13:48:41+0000", "targetEnvironment": "STAGING", "testRunId": 2 } ] }



Curl
curl -X GET 'https://undefined/test-management/v3/test-runs?accountSwitchKey=' -H 'Accept: application/json'

ENDPOINTS