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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.poly.ai/feedback

```json
{
  "path": "/api-reference/agents/endpoint/connectors/list-all-connectors-for-a-project",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# List all connectors for a project



## OpenAPI

````yaml GET /v1/agents/{agentId}/telephony/connectors
openapi: 3.1.0
info:
  title: PolyAI Agents API
  version: 1.0.3
  description: >-
    Build and deploy PolyAI agents programmatically. Create agents, manage
    branches, update behavior rules, configure knowledge bases, provision
    telephony, publish deployments, and update real-time configs.
servers:
  - url: https://api.us.poly.ai
    description: US region
  - url: https://api.uk.poly.ai
    description: UK region
  - url: https://api.eu.poly.ai
    description: EU region
security:
  - ApiKeyAuth: []
tags:
  - name: Agents
    description: Create, list, duplicate, and delete agents.
  - name: Branches
    description: Create isolated branches for parallel development and merge back to main.
  - name: Agent Behavior
    description: >-
      Read and update an agent's behavior rules (system prompt, interaction
      style, edge cases).
  - name: Knowledge Base
    description: Manage knowledge base topics used for retrieval and tool invocation.
  - name: Variants
    description: Manage site-specific variations of an agent using attributes and variants.
  - name: Deployments
    description: Publish drafts, promote across environments, and roll back deployments.
  - name: Connectors
    description: >-
      Manage telephony connectors that bind phone numbers to voice
      infrastructure.
  - name: Phone Numbers
    description: Provision, reassign, and delete phone numbers on an agent's connectors.
  - name: Real-Time Configs
    description: Update runtime values (e.g. opening hours) outside the publish workflow.
paths:
  /v1/agents/{agentId}/telephony/connectors:
    parameters:
      - name: agentId
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Connectors
      summary: List all connectors for a project
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConnectorsResponse'
        '401':
          description: Unauthorized – missing or invalid API key
        '403':
          description: Forbidden – insufficient permissions
components:
  schemas:
    GetConnectorsResponse:
      description: Every connector in the project.
      type: object
      properties:
        connectors:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorResponse'
      required:
        - connectors
    ConnectorResponse:
      description: |-
        A connector: the voice, language, variant, and environment bundle
        that handles incoming calls. Multiple phone numbers can share one
        connector.
      type: object
      properties:
        connectorId:
          description: Unique connector identifier
          type: string
        name:
          description: Connector display name
          type: string
        accountId:
          description: Account this connector belongs to
          type: string
        projectId:
          description: Project this connector belongs to
          type: string
        clientEnv:
          description: Client environment (sandbox, pre-release, live)
          type: string
        variantId:
          description: Assigned variant ID (empty string if unassigned)
          type: string
        asrLangCode:
          description: ASR language code (e.g. en-US)
          type: string
        ttsLangCode:
          description: TTS language code (e.g. en-US)
          type: string
        voiceName:
          description: Google TTS voice name (e.g. en-US-Neural2-A)
          type: string
        disableHandoff:
          description: Whether call handoff is disabled
          type: boolean
      required:
        - connectorId
        - name
        - accountId
        - projectId
        - clientEnv
        - variantId
        - asrLangCode
        - ttsLangCode
        - voiceName
        - disableHandoff
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````