Appearance
Create organization.
POST
/backend/v1/org
Creates a new organization with the given name.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Request Body
application/json
JSON
{
"email": "string",
"entitlements": "string",
"features": {
"blueTeam": {
"customScanners": {
"enabled": true,
"maxConcurrentCustom": 10,
"maxConcurrentVendored": 50
},
"enabled": true,
"legacyScanners": false
},
"redTeam": {
"enabled": false
}
},
"name": "string",
"roleIds": [
"string"
],
"roles": [
"string"
],
"sendInvite": true,
"userName": "string"
}
Responses
Successful Response
application/json
JSON
{
"id": "string"
}