Projects›Update Project By ID
Projects
Update Project By ID
Update Project Details 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.
Response
application/jsonOK
messagestring
Example: "Project updated successfully"
typestring
Example: "Success"
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"
}