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

# List Integration Source User Identifiers

> List all user identifiers for a specific integration source.

Args:
    organization_id: Organization ID
    source_id: Integration source ID
    db: Database session
    current_user_id: Current authenticated user ID

Returns:
    List of user integration identifiers for this source



## OpenAPI

````yaml https://config.heyhumm.ai/api/openapi.json get /api/organization/{organization_id}/integration-source/{source_id}/user-identifiers
openapi: 3.1.0
info:
  title: Configuration API
  description: >-
    API for managing configuration and queues for various services. This service
    consolidates the API functionality previously provided by dd_rag_api and
    code_rag_api.
  version: 1.0.0
servers:
  - url: https://config.heyhumm.ai
security: []
paths:
  /api/organization/{organization_id}/integration-source/{source_id}/user-identifiers:
    get:
      tags:
        - User Identifiers
      summary: List Integration Source User Identifiers
      description: |-
        List all user identifiers for a specific integration source.

        Args:
            organization_id: Organization ID
            source_id: Integration source ID
            db: Database session
            current_user_id: Current authenticated user ID

        Returns:
            List of user integration identifiers for this source
      operationId: >-
        list_integration_source_user_identifiers_api_organization__organization_id__integration_source__source_id__user_identifiers_get
      parameters:
        - name: organization_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Organization Id
        - name: source_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Source Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserIntegrationIdentifierResponse'
                title: >-
                  Response List Integration Source User Identifiers Api
                  Organization  Organization Id  Integration Source  Source Id 
                  User Identifiers Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UserIntegrationIdentifierResponse:
      properties:
        organization_id:
          type: string
          format: uuid
          title: Organization Id
          description: Organization that owns this identifier mapping
        user_id:
          type: string
          format: uuid
          title: User Id
          description: User this identifier belongs to
        integration_source_id:
          type: string
          format: uuid
          title: Integration Source Id
          description: Integration source where this identifier is used
        identifier_key:
          type: string
          title: Identifier Key
          description: >-
            Key/field name for the identifier (e.g., 'owner_id', 'user_email',
            'employee_id')
        identifier_value:
          type: string
          title: Identifier Value
          description: The actual identifier value
        discovery_method:
          $ref: '#/components/schemas/DiscoveryMethod'
          description: Method used to discover this identifier
        confidence_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Confidence Score
          description: Confidence score for LLM-discovered identifiers (0.0-1.0)
        discovery_metadata:
          additionalProperties: true
          type: object
          title: Discovery Metadata
          description: Additional context about the identifier
        id:
          type: string
          format: uuid
          title: Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - organization_id
        - user_id
        - integration_source_id
        - identifier_key
        - identifier_value
        - discovery_method
        - id
        - created_at
        - updated_at
      title: UserIntegrationIdentifierResponse
      description: Response model for user integration identifiers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DiscoveryMethod:
      type: string
      enum:
        - mcp_tool
        - llm_discovery
        - manual
      title: DiscoveryMethod
      description: Method used to discover the user identifier.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````