> ## 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 application management configurations

> List every application-management configuration the caller can see. Each configuration governs how a given application source (e.g. a CRM webhook) maps fields to Tether and which automations it can trigger.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/application-management
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/application-management:
    get:
      tags:
        - ApplicationConfigs
      summary: Get all application management configurations
      description: >-
        List every application-management configuration the caller can see. Each
        configuration governs how a given application source (e.g. a CRM
        webhook) maps fields to Tether and which automations it can trigger.
      operationId: get_application_configs
      responses:
        '200':
          description: Configurations returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationConfigListResponse'
        '400':
          description: Missing user or organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationManagementErrorResponse'
        '500':
          description: Failed to fetch configurations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationManagementErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ApplicationConfigListResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            type: object
            additionalProperties: true
      additionalProperties: true
      example:
        success: true
        data:
          - _id: 66c0a0b0c0d0e0f0a0b0c0d0
            configurationName: Mortgage CRM Webhook
            source: Encompass
            status: active
    ApplicationManagementErrorResponse:
      type: object
      description: >-
        Error envelope for `/api/application-management` endpoints. Most
        failures only set `error`; mutating endpoints occasionally surface a
        `success:false` + `message` pair.
      properties:
        error:
          type: string
        message:
          type: string
        success:
          type: boolean
          enum:
            - false
      required:
        - error
      additionalProperties: true
      example:
        error: Application management entry not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````