Skip to main content
GroupsCreate Group
TestMu AI
StatusCommunityBlog
Groups

Create Group

Create Group

POST
/api/v1/organization/group
Create Group
curl --request POST \
--url "https://auth.lambdatest.com//api/v1/organization/group" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"users": [],
"allocated_concurrency": "<allocated_concurrency>"
}'
{
"message": "Group created successfully!",
"type": "success"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
namestring
usersarray
allocated_concurrencyobject

Response

application/json

Success

messagestring
typestring
Create Group
curl --request POST \
--url "https://auth.lambdatest.com//api/v1/organization/group" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"users": [],
"allocated_concurrency": "<allocated_concurrency>"
}'
{
"message": "Group created successfully!",
"type": "success"
}