# Create a new organization Endpoint: POST /organization Version: 1.0 Security: bearer ## Request fields (application/json): - `title` (string, required) The title of the organization Example: "HealthCorp" - `website` (string, required) The website of the organization Example: "https://heydonto.com" - `isEnabled` (boolean) Indicates whether the organization is enabled Example: true - `clientAccountId` (number, required) The ID of the client account Example: 123 ## Response 201 fields (application/json): - `title` (string, required) The title of the organization Example: "HealthCorp" - `website` (string, required) The website of the organization Example: "https://heydonto.com" - `isEnabled` (boolean) Indicates whether the organization is enabled Example: true - `clientAccountId` (number, required) The ID of the client account Example: 123 ## Response 401 fields (application/json): - `message` (string, required) Error message indicating unauthorized access. Example: "Unauthorized" - `statusCode` (number, required) HTTP status code for unauthorized access. Example: 401 ## Response 400 fields