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 Project By ID
TestMu AI
StatusCommunityBlog
Projects

Update Project By ID

Update Project Details By ID

PUT
/api/v1/projects
Update Project By ID
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "project_id",
"name": "Test Project -LambdaTest Demo",
"description": "Updated Test Project Demo Description",
"tags": [
"tag1",
"tag2"
]
}'
{
"message": "Project updated successfully",
"type": "Success"
}

Authorizations

Authorizationstringheaderrequired

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

Body

application/json
project_idstring
namestring
descriptionstring
tagsarray

Response

application/json

OK

messagestring
Example: "Project updated successfully"
typestring
Example: "Success"
Update Project By ID
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "project_id",
"name": "Test Project -LambdaTest Demo",
"description": "Updated Test Project Demo Description",
"tags": [
"tag1",
"tag2"
]
}'
{
"message": "Project updated successfully",
"type": "Success"
}