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

# Import a Twilio number as a warm-transfer bridge number



## OpenAPI

````yaml /api-reference/openapi.json post /v1/identity/org/bridge-numbers
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/bridge-numbers:
    post:
      tags:
        - identity
      summary: Import a Twilio number as a warm-transfer bridge number
      operationId: importBridgeNumber
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportBridgeNumberRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BridgeNumberView'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ImportBridgeNumberRequest:
      properties:
        twilio_number_sid:
          type: string
          maxLength: 64
          minLength: 1
          title: Twilio Number Sid
      additionalProperties: false
      type: object
      required:
        - twilio_number_sid
      title: ImportBridgeNumberRequest
      description: >-
        Request body for importing a Twilio number as a bridge number.


        Accepts either the Twilio Phone Number SID (PN…) or the E.164 phone
        number

        (+1…) — we resolve the canonical SID from Twilio either way. We resolve
        the

        Twilio account credentials from the org's Nango-connected Twilio
        integration

        (the same credentials SMS/voice already use). Bridge numbers are
        BYO-only:

        the org must have a connected Twilio integration or the import is
        rejected.
    BridgeNumberView:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        phone_e164:
          type: string
          title: Phone E164
        twilio_sid:
          type: string
          title: Twilio Sid
        integration_connection_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Integration Connection Id
        status:
          type: string
          title: Status
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - phone_e164
        - twilio_sid
        - status
        - created_at
      title: BridgeNumberView
      description: Public view of a bridge number — never exposes credentials.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````