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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json OK
message string
Example: "Project updated successfully"
type string
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"
}