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

# Get all notification sounds for organization

> Return the catalog of available notification sounds for the caller's organization. Backed by a yet-to-land `NotificationConfig` model, so for now this returns an empty array (placeholder endpoint).



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/notification-sounds
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/notification-sounds:
    get:
      tags:
        - Notification Sounds
      summary: Get all notification sounds for organization
      description: >-
        Return the catalog of available notification sounds for the caller's
        organization. Backed by a yet-to-land `NotificationConfig` model, so for
        now this returns an empty array (placeholder endpoint).
      operationId: get_notification_sounds
      responses:
        '200':
          description: Notification sounds returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationSoundsListResponse'
        '500':
          description: Failed to fetch notification sounds
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationSoundsErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    NotificationSoundsListResponse:
      type: object
      description: >-
        List of notification sounds. Currently returns an empty array — backend
        `NotificationConfig` model is not yet implemented (TODO in controller).
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: array
          items:
            type: object
            description: >-
              Placeholder shape; concrete fields will be defined once
              NotificationConfig lands.
            additionalProperties: true
      required:
        - success
        - data
      additionalProperties: true
      example:
        success: true
        data: []
    NotificationSoundsErrorResponse:
      type: object
      description: Error envelope used by notification-sounds endpoints.
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
      additionalProperties: true
      example:
        success: false
        message: User not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````