Phone Testing › Get call results grouped by suite
Phone Testing
Get call results grouped by suite Get phone call results grouped by suite for a project.
Get call results grouped by suite curl -- request GET \
-- url "https://agent-testing.lambdatest.com/api/results/{project_id}" \
-- header "Authorization: Basic <encoded-value>"
{
"project_id" : "<string>" ,
"suites" : [
{
"suite_id" : "<string>" ,
"suite_name" : "<string>" ,
"scenarios" : [
{
"scenario_id" : "<string>" ,
"scenario_title" : "<string>" ,
"call_id" : "<string>"
}
]
}
]
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json Suites in the project with their scenario/call ID pairs; `suites` is empty when the project has no call results
suites object[] required
▶ Hide child attributessuites. suite_id string
Example: "<string>"
suites. suite_name string
Example: "<string>"
suites. scenarios object[]
▶ Show child attributes
Get call results grouped by suite curl -- request GET \
-- url "https://agent-testing.lambdatest.com/api/results/{project_id}" \
-- header "Authorization: Basic <encoded-value>"
{
"project_id" : "<string>" ,
"suites" : [
{
"suite_id" : "<string>" ,
"suite_name" : "<string>" ,
"scenarios" : [
{
"scenario_id" : "<string>" ,
"scenario_title" : "<string>" ,
"call_id" : "<string>"
}
]
}
]
}