Skip to main content
POST
/
organizations
/
create
Create a new organization
curl --request POST \
  --url https://auth.platform.arb.inc/organizations/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Organization"
}
'
{
  "organizationId": "3f3cdd5b-f823-4e6e-8de9-6132dfe4c9c0"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
name
string
required

The name of the organization to create.

Maximum string length: 100
Example:

"My Organization"

Response

Organization successfully created.

organizationId
string

ID of the created organization.

Example:

"3f3cdd5b-f823-4e6e-8de9-6132dfe4c9c0"