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

# List User SIP Configurations

> Retrieves all active (non-deleted) SIP configurations and their associated active numbers for the authenticated user.



## OpenAPI

````yaml get /sip/list
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /sip/list:
    get:
      tags:
        - sip
      summary: List User SIP Configurations
      description: >-
        Retrieves all active (non-deleted) SIP configurations and their
        associated active numbers for the authenticated user.
      operationId: SIPController_getConfigs
      parameters:
        - name: phone
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: List of SIP configurations with their numbers.
          content:
            application/json:
              schema:
                example:
                  - id: uuid-1234
                    trunkName: Marketing Trunk
                    payload:
                      phone_number: ''
                      service: sip
                    apiResponse:
                      status: success
                    createdAt: '2023-12-01T10:00:00Z'
                    createdBy: '105'
                    deletedAt: null
                    deletedBy: null
                    sipNumbers:
                      - id: uuid-5678
                        number: '+14155552671'
                        createdAt: '2023-12-02T11:00:00Z'
                        createdBy: '105'
                        detachedAt: null
                        detachedBy: null
                        sipConfigId: uuid-1234
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````