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

Delete Agent Profiles

Delete agent profiles. Note: this endpoint takes no path parameter — the profile ids to delete are passed in the request body.

DEL
/api/agent-profiles
Delete Agent Profiles
curl --request DELETE \
--url "https://agent-testing.lambdatest.com/api/agent-profiles" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"profile_ids": []
}'
{
"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.

Body

application/json
profile_idsarrayrequired

List of profile IDs to delete

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"
Delete Agent Profiles
curl --request DELETE \
--url "https://agent-testing.lambdatest.com/api/agent-profiles" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"profile_ids": []
}'
{
"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"
}
]
}