Groups › Update Group By ID
Groups
Update Group By ID Update Group By ID
curl -- request PUT \
-- url "https://auth.lambdatest.com/api/v1/organization/group/{group_id}" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"name" : "<name>" ,
"users" : [ ] ,
"allocated_concurrency" : "<allocated_concurrency>"
} '
{
"message" : "Group 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.
Path Parameters group_id integer required
Group ID
Body application/json allocated_concurrency object
Response 200▼
application/json Success
curl -- request PUT \
-- url "https://auth.lambdatest.com/api/v1/organization/group/{group_id}" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"name" : "<name>" ,
"users" : [ ] ,
"allocated_concurrency" : "<allocated_concurrency>"
} '
{
"message" : "Group updated successfully!" ,
"type" : "success"
}