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
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
group_idintegerrequired
Group ID
Body
application/jsonallocated_concurrencyobject
Response
application/jsonSuccess
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"
}