List test suites
GET https://{{host}}/test-management/v3/functional/test-suites
Lists test suites created in your organization. The list can also include deleted test suites you can restore. The response contains an array of objects, each keyed by testSuiteId
. You can use these IDs to Get a test suite with child objects.
Body
PARAM
Key | Datatype | Required | Description |
includeRecentlyDeleted
|
string | (Optional) Includes items deleted within the last 30 days, which you can restore, `false` by default. | |
propertyId
|
string | (Optional) Unique identifier for property associated with the test suite to filter the list by. You can combine this parameter with `propertyVersion`. Use either this parameter or `propertyName` to specify the property. | |
propertyName
|
string | (Optional) Property name associated with a test suite to filter the list by. You can combine this parameter with `propertyVersion`. Use either this parameter or `propertyId` to specify the property. | |
propertyVersion
|
string | (Optional) Version of the associated Property Manager property to filter the test suites by. Combine this parameter with `propertyId` or `propertyName`. | |
user
|
string | (Optional) Filters the list to items created, edited, or deleted by a specific username. | |
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 | Curl curl -X GET 'https://host/test-management/v3/functional/test-suites?includeRecentlyDeleted=&propertyId=&propertyName=&propertyVersion=&user=&accountSwitchKey=' -H 'Accept: application/json' ENDPOINTS |