Groups › Update multiple Group
Groups
Update multiple Group Update multiple Group
curl -- request PUT \
-- url "https://auth.lambdatest.com/api/v1/organization/groups" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"groups" : [
{
"allocated_concurrency" : {
"prod_KUHcM296xEk2Cy" : 4
} ,
"id" : 1011
}
]
} '
{
"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.
Response 200▼
application/json Success
curl -- request PUT \
-- url "https://auth.lambdatest.com/api/v1/organization/groups" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"groups" : [
{
"allocated_concurrency" : {
"prod_KUHcM296xEk2Cy" : 4
} ,
"id" : 1011
}
]
} '
{
"message" : "Group updated successfully!" ,
"type" : "success"
}