Create an organization
Create a new organization within the account.
Payload Requirements
nameis required and must be unique within the account.descriptionis optional and defaults to an empty string if omitted.- System-managed fields (
id,created_at) are generated automatically and rejected if provided.
Valid example
{
"name": "Agent Engineering Team",
"description": "Organization for the Agent Engineering team"
}
Invalid example (duplicate name)
{
"name": "Agent Engineering Team"
}
Fails with 409 Conflict if an organization with that name already exists in the account.
Authorizations
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
Body
Body containing organization creation parameters
Response
An organization object
An organization is a top-level container within an account for grouping spaces and managing access control. Organizations enable team separation with role-based access control at the organization level.