Skip to main content
POST
/
v0
/
organizations
curl --request POST \
  --url 'https://api.unify.ai/v0/organizations' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}
Create a new organization. The authenticated user will be the owner of the organization. timezone is initialized from the owner’s timezone setting. Returns the organization details and the owner’s organization API key.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

name
string
required
timezone
string | null
curl --request POST \
  --url 'https://api.unify.ai/v0/organizations' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}