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
ProjectsUpdate Agent Project
TestMu AI
StatusCommunityBlog
Projects

Update Agent Project

Update an existing agent project.

PUT
/api/projects/{project_id}
Update Agent Project
curl --request PUT \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"agent_type": "<agent_type>"
}'
{
"success": true,
"message": "",
"data": {
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"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.

Path Parameters

project_idstringrequired

Body

application/json
namestring

Project name

descriptionstring

Project description

agent_typestring

Agent type

Response

application/json

Successful Response

successboolean

Whether the operation was successful

messagestring

Response message

dataobject

Agent project data

data.project_idstring
Example: "<string>"
data.namestring
Example: "<string>"
data.descriptionstring
Example: "<string>"
data.agent_typestring
Example: "chat"
data.created_atstring
Example: "2018-03-15T12:00:00Z"
data.updated_atstring
Example: "2018-03-15T12:00:00Z"
Update Agent Project
curl --request PUT \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"agent_type": "<agent_type>"
}'
{
"success": true,
"message": "",
"data": {
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z"
}
}