> ## 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 a specific application management configuration

> Fetch a single application-management configuration by `_id`. Cross-org reads are rejected.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/application-management/{id}
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/{id}:
    get:
      tags:
        - ApplicationConfigs
      summary: Get a specific application management configuration
      description: >-
        Fetch a single application-management configuration by `_id`. Cross-org
        reads are rejected.
      operationId: get_application_config_by_id
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Configuration returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationConfigResponse'
        '400':
          description: Missing required ids
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationManagementErrorResponse'
        '404':
          description: Configuration not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationManagementErrorResponse'
        '500':
          description: Failed to fetch configuration
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationManagementErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ApplicationConfigResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          additionalProperties: true
      additionalProperties: true
      example:
        success: true
        message: Configuration created
        data:
          _id: 66c0a0b0c0d0e0f0a0b0c0d0
          configurationName: Mortgage CRM Webhook
          source: Encompass
          defaultStatus: new
          status: active
          organizationId: 65a0e0e0e0e0e0e0e0e0e0e0
    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

````