# Create a new organization under the authenticated organization **POST /api/v1/organization** Creates a new organization with various details including legal information, address, bank accounts, and owners. The user must be authenticated and provide required fields such as `legalName`, `legalType`, and `taxId`. ## Servers - Production server for Ark API: https://ark.collegecanine.com (Production server for Ark API) ## Parameters ### Body: application/json (object) - **name** (string) The name of the new organization - **description** (string) A brief description of the organization - **logo** (string) URL of the organization's logo - **type** (string) Type of organization - **descriptor** (string) Descriptor for the organization - **legalName** (string) Legal name of the organization - **legalType** (string) Legal type of the organization - **taxId** (string) Tax identification number for the organization - **phone** (string) Contact phone number for the organization - **email** (string) Contact email for the organization - **website** (string) Website URL for the organization - **address** (object) Address details for the organization - **bankAccounts** (array[object]) List of bank accounts associated with the organization - **owners** (array[object]) List of owners associated with the organization ## Responses ### 200 Organization created successfully with details including bank accounts and owners. #### Body: application/json (object) - **id** (string) Unique identifier for the created organization - **name** (string) Name of the organization - **legalName** (string) Legal name of the organization - **legalType** (string) Legal type of the organization - **taxId** (string) Tax identification number of the organization - **address** (object) Address of the organization - **bankAccounts** (array) List of bank accounts associated with the organization - **owners** (array) List of owners associated with the organization ### 400 Invalid request. Required fields are missing. ### 401 Not authenticated. The user must be logged in to access this endpoint. [Powered by Bump.sh](https://bump.sh)