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 '{}'
{
    "id": "integer",
    "name": "string",
    "owner_id": "string",
    "billing_user_id": "string",
    "created_at": "string"
}
Create a new organization. The authenticated user will be the owner of the organization. If billing_user_id is not provided, it defaults to the owner.

Authorizations

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

Body

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