Create a new organization within the account.
Payload Requirements
name is required and must be unique within the account.description is optional and defaults to an empty string if omitted.id, created_at) are generated automatically and rejected if provided.Example valid request:
{ "name": "Agent Engineering Team", "description": "Organization for the Agent Engineering team" }
Example invalid request (duplicate name):
{ "name": "Agent Engineering Team" }
Fails with 409 Conflict if an organization with that name already exists in the account.
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
Body containing organization creation parameters
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.