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": "Acme Corporation"
}
'
{
  "organizationId": "2720f109-0caf-4c62-af22-5d08c853711c"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
name
string
required

Organization name (max 100 characters)

Example:

"Acme Corporation"

Response

Successfully created organization

organizationId
string<uuid>

The newly created organization's ID

Example:

"2720f109-0caf-4c62-af22-5d08c853711c"