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
Voice TestingList saved voice scenarios
TestMu AI
StatusCommunityBlog
Voice Testing

List saved voice scenarios

Get all saved voice scenarios for a project.

GET
/api/projects/{project_id}/voice-scenarios/saved
List saved voice scenarios
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/voice-scenarios/saved" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"scenarios": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"persona": "<string>",
"category": "task_completion",
"expected_output": [
"<string>"
],
"max_turns": 123,
"first_speaker": "<string>",
"max_duration_seconds": 123,
"prompt_version_id": "<string>",
"sync_status": "<string>"
}
],
"count": 123
}

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

Response

application/json

All saved scenarios for the project.

successbooleanrequired
scenariosobject[]required
scenarios.idstring
Example: "<string>"
scenarios.titlestring
Example: "<string>"
scenarios.descriptionstring
Example: "<string>"
scenarios.personastring
Example: "<string>"
scenarios.categorystring
Example: "task_completion"
scenarios.expected_outputstring[]
Example:
["<string>"]
scenarios.max_turnsnumber
scenarios.first_speakerstring
Example: "<string>"
scenarios.max_duration_secondsnumber
scenarios.prompt_version_idstring
Example: "<string>"
scenarios.sync_statusstring
Example: "<string>"
countintegerrequired

Number of scenarios returned

List saved voice scenarios
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/voice-scenarios/saved" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"scenarios": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"persona": "<string>",
"category": "task_completion",
"expected_output": [
"<string>"
],
"max_turns": 123,
"first_speaker": "<string>",
"max_duration_seconds": 123,
"prompt_version_id": "<string>",
"sync_status": "<string>"
}
],
"count": 123
}