Skip to main content
Sub Organization - CRUDCreate Sub Organization
TestMu AI
StatusCommunityBlog
Sub Organization - CRUD

Create Sub Organization

Create Sub Organization

POST
/api/organization/sub-org
Create Sub Organization
curl --request POST \
--url "https://auth.lambdatest.com//api/organization/sub-org" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"allocated_concurrency": "<allocated_concurrency>",
"name": "<name>"
}'
{
"message": "Created Sub-Organisation Successfully",
"type": "success",
"sub_org_id": 45005
}

Authorizations

Authorizationstringheaderrequired

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

Body

application/json
allocated_concurrencyobject
namestring

Response

application/json

Create Sub Org

messagestring
typestring
sub_org_idinteger
Create Sub Organization
curl --request POST \
--url "https://auth.lambdatest.com//api/organization/sub-org" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"allocated_concurrency": "<allocated_concurrency>",
"name": "<name>"
}'
{
"message": "Created Sub-Organisation Successfully",
"type": "success",
"sub_org_id": 45005
}