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
Agent ProfilesGet Agent Profiles
TestMu AI
StatusCommunityBlog
Agent Profiles

Get Agent Profiles

Get all agent profiles for the organization.

GET
/api/agent-profiles
Get Agent Profiles
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/agent-profiles" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": [
{
"id": "<string>",
"org_id": "<string>",
"agent_name": "<string>",
"phone_number": "<string>",
"voice_name": "<string>",
"background_noise": "<string>",
"max_duration_seconds": 123,
"agent_type": "PHONE_CALLER_INBOUND",
"is_active": true,
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z"
}
]
}

Authorizations

Authorizationstringheaderrequired

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

Response

application/json

Successful Response

successboolean

Whether the operation was successful

messagestringrequired

Response message

dataobject[]

List of agent profiles

data.idstring
Example: "<string>"
data.org_idstring
Example: "<string>"
data.agent_namestring
Example: "<string>"
data.phone_numberstring
Example: "<string>"
data.voice_namestring
Example: "<string>"
data.background_noisestring
Example: "<string>"
data.max_duration_secondsnumber
data.agent_typestring
Example: "PHONE_CALLER_INBOUND"
data.is_activeboolean
Example: true
data.created_atstring
Example: "2018-03-15T12:00:00Z"
data.updated_atstring
Example: "2018-03-15T12:00:00Z"
Get Agent Profiles
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/agent-profiles" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": [
{
"id": "<string>",
"org_id": "<string>",
"agent_name": "<string>",
"phone_number": "<string>",
"voice_name": "<string>",
"background_noise": "<string>",
"max_duration_seconds": 123,
"agent_type": "PHONE_CALLER_INBOUND",
"is_active": true,
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z"
}
]
}