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": "<name>",
"description": "<description>",
"tags": []
}'
{
"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": "<name>",
"description": "<description>",
"tags": []
}'
{
"message": "Project updated successfully",
"type": "Success"
}