For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Phone TestingGet Suites By Project
TestMu AI
StatusCommunityBlog
Phone Testing

Get Suites By Project

Get all suites for a given project, optionally filtered by workflow_id. Note: the path parameter is a PROJECT id (this lists the project's suites); suite-scoped operations take a suite id instead.

GET
/api/suites/{project_id}
Get Suites By Project
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/suites/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"suites": [
{
"id": "<string>",
"project_id": "<string>",
"workflow_id": "<string>",
"name": "<string>",
"scenario_ids": [
{}
],
"has_active_scheduler": false,
"scheduler_id": "<string>",
"test_profile_id": "<string>",
"agent_profile_id": "<string>",
"region": "<string>"
}
]
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

project_idstringrequired

Query Parameters

workflow_idstring

Optional workflow ID to filter suites for chat agents

Response

application/json

Successful Response

suitesobject[]required
suites.idstring
Example: "<string>"
suites.project_idstring
Example: "<string>"
suites.workflow_idstring
Example: "<string>"
suites.namestring
Example: "<string>"
suites.scenario_idsobject[]
suites.has_active_schedulerboolean
Example: false
suites.scheduler_idstring
Example: "<string>"
suites.test_profile_idstring
Example: "<string>"
suites.agent_profile_idstring
Example: "<string>"
suites.regionstring
Example: "<string>"
Get Suites By Project
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/suites/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"suites": [
{
"id": "<string>",
"project_id": "<string>",
"workflow_id": "<string>",
"name": "<string>",
"scenario_ids": [
{}
],
"has_active_scheduler": false,
"scheduler_id": "<string>",
"test_profile_id": "<string>",
"agent_profile_id": "<string>",
"region": "<string>"
}
]
}