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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
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"
}