> ## 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.

# Get org notification settings (default destination + timezone)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/notifications/settings
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/notifications/settings:
    get:
      tags:
        - notifications
      summary: Get org notification settings (default destination + timezone)
      operationId: getNotificationSettings
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    SettingsResponse:
      properties:
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        default_destination_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Default Destination Id
        timezone:
          type: string
          title: Timezone
        quiet_hours_enabled:
          type: boolean
          title: Quiet Hours Enabled
        quiet_hours_start:
          anyOf:
            - type: string
              format: time
            - type: 'null'
          title: Quiet Hours Start
        quiet_hours_end:
          anyOf:
            - type: string
              format: time
            - type: 'null'
          title: Quiet Hours End
        digest_send_time:
          type: string
          format: time
          title: Digest Send Time
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - organization_id
        - default_destination_id
        - timezone
        - quiet_hours_enabled
        - quiet_hours_start
        - quiet_hours_end
        - digest_send_time
        - created_at
        - updated_at
      title: SettingsResponse
    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.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````