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

# List patient external IDs



## OpenAPI

````yaml https://api.getsolum.com/openapi.json get /v1/patients/{patient_id}/external-ids
openapi: 3.1.0
info:
  title: Solum Health API
  description: '## Solum Health Backend API '
  version: 1.0.0
servers: []
security: []
paths:
  /v1/patients/{patient_id}/external-ids:
    get:
      tags:
        - Patient External IDs
      summary: List patient external IDs
      operationId: list_patient_external_ids_v1_patients__patient_id__external_ids_get
      parameters:
        - name: patient_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Patient UUID
            title: Patient Id
          description: Patient UUID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalIdValueResponse'
                title: >-
                  Response List Patient External Ids V1 Patients  Patient Id 
                  External Ids Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    example: validation_error
                  code:
                    type: string
                    example: invalid_parameter
                  message:
                    type: string
                    example: Field validation failed
                  param:
                    type: string
                    example: phone_number
                required:
                  - type
                  - code
                  - message
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    ExternalIdValueResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        patient_id:
          type: string
          format: uuid
          title: Patient Id
        value:
          type: string
          title: Value
        external_id_type:
          $ref: '#/components/schemas/ExternalIdTypeSummary'
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      additionalProperties: false
      type: object
      required:
        - id
        - patient_id
        - value
        - external_id_type
        - created_at
        - updated_at
      title: ExternalIdValueResponse
      description: >-
        Response shape for the patient external-ids endpoints AND for the
        embedded

        `external_id_values` field on PatientResponse.
    ExternalIdTypeSummary:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      additionalProperties: false
      type: object
      required:
        - id
        - name
      title: ExternalIdTypeSummary
      description: >-
        Read-only summary of an external_id_types row.


        Used embedded in `ExternalIdValueResponse` (where `created_at` stays
        None)

        and as the body of `GET /v1/external-id-types` (where it's populated).
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      scheme: bearer

````