Sub Organization - CRUD›Create Sub Organization
Sub Organization - CRUD
Create Sub Organization
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/jsonallocated_concurrencyobject
Response
application/jsonCreate Sub Org
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
}