> ## Documentation Index
> Fetch the complete documentation index at: https://doc.featherhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update current organization



## OpenAPI

````yaml /api-reference/openapi.json put /v1/identity/org
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/identity/org:
    put:
      tags:
        - identity
      summary: Update current organization
      operationId: updateOrganization
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    OrganizationUpdate:
      properties:
        settings:
          anyOf:
            - $ref: '#/components/schemas/OrgSettings'
            - type: 'null'
      additionalProperties: false
      type: object
      title: OrganizationUpdate
    OrganizationResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        clerk_org_id:
          type: string
          title: Clerk Org Id
        name:
          type: string
          title: Name
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        plan:
          type: string
          title: Plan
        settings:
          $ref: '#/components/schemas/OrgSettings'
        is_active:
          type: boolean
          title: Is Active
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - clerk_org_id
        - name
        - slug
        - plan
        - settings
        - is_active
        - created_at
        - updated_at
      title: OrganizationResponse
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OrgSettings:
      properties:
        retry:
          anyOf:
            - $ref: '#/components/schemas/RetryConfig'
            - type: 'null'
        kb_role_clearance_map:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Kb Role Clearance Map
        kb_role_audience_map:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
          title: Kb Role Audience Map
        kb_classification_mode:
          anyOf:
            - type: string
              enum:
                - auto
                - kb_default
            - type: 'null'
          title: Kb Classification Mode
        kb_acl_oversample_factor:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Kb Acl Oversample Factor
      additionalProperties: true
      type: object
      title: OrgSettings
      description: Typed schema for Organization.settings JSON column.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    RetryConfig:
      properties:
        max_retries:
          type: integer
          maximum: 5
          minimum: 0
          title: Max Retries
          default: 0
        base_delay_seconds:
          type: number
          maximum: 30
          minimum: 0.1
          title: Base Delay Seconds
          default: 1
        max_delay_seconds:
          type: number
          maximum: 120
          minimum: 1
          title: Max Delay Seconds
          default: 30
        jitter:
          type: boolean
          title: Jitter
          default: true
      type: object
      title: RetryConfig
      description: >-
        Retry configuration — same schema at org, tool, and integration-instance
        level.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````