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

# Get Entity Link

> Get a specific entity link by ID.



## OpenAPI

````yaml https://config.heyhumm.ai/api/openapi.json get /api/organization/{organization_id}/entity-links/{entity_link_id}
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}/entity-links/{entity_link_id}:
    get:
      tags:
        - Entity Links
      summary: Get Entity Link
      description: Get a specific entity link by ID.
      operationId: >-
        get_entity_link_api_organization__organization_id__entity_links__entity_link_id__get
      parameters:
        - name: organization_id
          in: path
          required: true
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Organization Id
        - name: entity_link_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Entity Link Id
        - name: resource_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Resource Id
        - name: source_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Source Id
        - name: integration_source_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Integration Source Id
        - name: data_source_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Data Source Id
        - name: context_source_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Context Source Id
        - name: job_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityLinkResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    EntityLinkResponse:
      properties:
        organization_id:
          type: string
          format: uuid
          title: Organization Id
          description: Organization that owns this entity link
        source_integration_source_id:
          type: string
          format: uuid
          title: Source Integration Source Id
          description: Integration source containing the source entity
        source_table_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Table Id
          description: Source table ID (for DB sources)
        source_saas_object_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Saas Object Id
          description: Source SaaS object ID (for SaaS sources)
        source_column_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Column Id
          description: Source column ID (for DB sources)
        source_field_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Field Id
          description: Source field ID (for SaaS sources)
        target_integration_source_id:
          type: string
          format: uuid
          title: Target Integration Source Id
          description: Integration source containing the target entity
        target_table_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Target Table Id
          description: Target table ID (for DB sources)
        target_saas_object_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Target Saas Object Id
          description: Target SaaS object ID (for SaaS sources)
        target_column_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Target Column Id
          description: Target column ID (for DB sources)
        target_field_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Target Field Id
          description: Target field ID (for SaaS sources)
        link_type:
          $ref: '#/components/schemas/EntityLinkType'
          description: Type of link (deterministic exact match vs probabilistic)
          default: PROBABILISTIC
        status:
          $ref: '#/components/schemas/RelationshipStatus'
          description: Review status of the entity link
          default: SUGGESTED
        confidence_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Confidence Score
          description: Confidence score assigned by the linking pipeline (0.0-1.0)
        evidence:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Evidence
          description: Supporting evidence and calculations used to create the link
        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
        - source_integration_source_id
        - target_integration_source_id
        - id
        - created_at
        - updated_at
      title: EntityLinkResponse
      description: Response model for entity links.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EntityLinkType:
      type: string
      enum:
        - DETERMINISTIC
        - PROBABILISTIC
      title: EntityLinkType
      description: Type of entity link based on matching confidence.
    RelationshipStatus:
      type: string
      enum:
        - SUGGESTED
        - APPROVED
        - REJECTED
      title: RelationshipStatus
    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

````