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

# Show merged patient-facing vital signs



## OpenAPI

````yaml /openapi/nimbo_patient_portal.yml get /api/v1/patient_portal/people/{person_id}/vital_signs
openapi: 3.1.0
info:
  title: Nimbo patient portal
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
security: []
tags:
  - name: Patient Portal
  - name: Patient portal authentication
paths:
  /api/v1/patient_portal/people/{person_id}/vital_signs:
    get:
      tags:
        - Patient Portal
      summary: Show merged patient-facing vital signs
      operationId: showPatientPortalPersonVitalSigns
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: integer
          example: 123
      responses:
        '200':
          description: Non-deleted vital-sign sets merged in created-at ascending order.
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    required:
                      - vital_signs
                    additionalProperties: false
                    properties:
                      vital_signs:
                        type: object
                        required:
                          - id
                          - consultation_id
                          - person_id
                          - account_id
                          - elements
                          - created_at
                          - updated_at
                          - deleted_at
                          - set_type
                          - metadata
                        additionalProperties: false
                        properties:
                          id:
                            type: integer
                          consultation_id:
                            type:
                              - integer
                              - 'null'
                          person_id:
                            type: integer
                          account_id:
                            type:
                              - integer
                              - 'null'
                          elements:
                            type: object
                            additionalProperties: true
                          created_at:
                            type:
                              - string
                              - 'null'
                            format: date-time
                          updated_at:
                            type:
                              - string
                              - 'null'
                            format: date-time
                          deleted_at:
                            type:
                              - string
                              - 'null'
                            format: date-time
                          set_type:
                            type:
                              - string
                              - 'null'
                          metadata:
                            type: object
                            additionalProperties: true
                  - type: 'null'
        '401':
          description: Missing, expired, invalid, or unauthorized patient portal token.
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                additionalProperties: false
                properties:
                  error:
                    type: string
              examples:
                unauthorized:
                  value:
                    error: Unauthorized
        '404':
          description: >-
            The requested resource was not found or is outside the authorized
            patient scope.
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                additionalProperties: false
                properties:
                  error:
                    type: string
              examples:
                not_found:
                  value:
                    error: Not found
      security:
        - PatientPortalToken: []
components:
  securitySchemes:
    PatientPortalToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >
        Patient portal JWT accepted either as a raw Authorization header value
        or as a Bearer token for client compatibility.

````