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

# POST /vital_signs_sets



## OpenAPI

````yaml /openapi/nimbo_api.yml post /vital_signs_sets
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /vital_signs_sets:
    post:
      tags:
        - Vital Signs
      summary: POST /vital_signs_sets
      operationId: legacy_nimbo_api_post__vital_signs_sets
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                vital_signs_set:
                  type: object
                  properties:
                    created_at:
                      type: string
                      format: date-time
                    elements:
                      type: object
                      properties:
                        height:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        weight:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        body_mass:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        temperature:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        respiratory_rate:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        systole:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        diastole:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        heart_rate:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        body_fat_percentage:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        lean_body_mass:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        head_circumference:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                        oxygen_saturation:
                          type: object
                          properties:
                            units:
                              type: string
                            value:
                              type: string
                    person_id:
                      type: string
                      format: color
                    account_id:
                      type: string
      responses:
        '201':
          content:
            application/json:
              schema:
                type: object
                properties:
                  vital_signs_set:
                    type: object
                    properties:
                      id:
                        type: integer
                      consultation_id:
                        nullable: true
                      person_id:
                        type: integer
                      account_id:
                        type: integer
                      elements:
                        type: object
                        properties:
                          height:
                            type: object
                            properties:
                              units:
                                type: string
                              value:
                                type: string
                      created_at:
                        type: string
                        format: date-time
          description: Successful response

````