> ## 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 the org's warm-transfer settings (bridge webhook URL)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/identity/org/warm-transfer
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/warm-transfer:
    get:
      tags:
        - identity
      summary: Get the org's warm-transfer settings (bridge webhook URL)
      operationId: getWarmTransferSettings
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WarmTransferSettingsResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    WarmTransferSettingsResponse:
      properties:
        bridge_webhook_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Bridge Webhook Url
      type: object
      title: WarmTransferSettingsResponse
      description: >-
        GET response: the server-computed bridge webhook URL only.


        ``bridge_webhook_url`` is the public ``/twilio/{org_id}/bridge``
        endpoint each bridge

        number's Twilio Voice webhook points at (set programmatically at import
        time). Derived

        from ``settings.twilio_webhook_base_url`` + the org ID; ``None`` when
        the base is unset.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````