> ## 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 /medical_histories



## OpenAPI

````yaml /openapi/nimbo_api.yml post /medical_histories
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:
  /medical_histories:
    post:
      tags:
        - Medical History
      summary: POST /medical_histories
      operationId: legacy_nimbo_api_post__medical_histories
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                medical_history:
                  type: object
                  properties:
                    person_id:
                      type: string
                    work_history:
                      type: object
                      properties:
                        past_employment:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              type: string
                        accident_caused_disabilities:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              nullable: true
                        sickness_caused_disabilities:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              type: string
                        contact_with_dust_particles:
                          type: object
                          properties:
                            text:
                              nullable: true
                        exposure_to_loud_noises:
                          type: object
                          properties:
                            text:
                              nullable: true
                        exposure_to_chemicals:
                          type: object
                          properties:
                            text:
                              nullable: true
                        fractures_or_injuries:
                          type: object
                          properties:
                            text:
                              nullable: true
                        accidents_or_illnesses:
                          type: object
                          properties:
                            text:
                              nullable: true
                        fit_to_work:
                          type: object
                          properties:
                            text:
                              nullable: true
                        others:
                          type: object
                          properties:
                            text:
                              nullable: true
                    allergies:
                      type: string
                    pathological_records:
                      type: object
                      properties:
                        prior_hospitalization:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              type: string
                        prior_surgeries:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              nullable: true
                        diabetes:
                          type: object
                          properties:
                            text:
                              nullable: true
                        thyroid_diseases:
                          type: object
                          properties:
                            text:
                              nullable: true
                        hypertension:
                          type: object
                          properties:
                            text:
                              nullable: true
                        heart_diseases:
                          type: object
                          properties:
                            text:
                              nullable: true
                        injuries:
                          type: object
                          properties:
                            text:
                              nullable: true
                        cancer:
                          type: object
                          properties:
                            text:
                              nullable: true
                        tuberculosis:
                          type: object
                          properties:
                            text:
                              nullable: true
                        transfusions:
                          type: object
                          properties:
                            text:
                              nullable: true
                        respiratory:
                          type: object
                          properties:
                            text:
                              nullable: true
                        gastrointestinal:
                          type: object
                          properties:
                            text:
                              nullable: true
                        stds:
                          type: object
                          properties:
                            text:
                              nullable: true
                        other:
                          type: object
                          properties:
                            text:
                              nullable: true
                    nonpathological_records:
                      type: object
                      properties:
                        physical_activity:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              type: string
                        smoking:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              nullable: true
                        alcoholism:
                          type: object
                          properties:
                            text:
                              nullable: true
                        drugs_abuse:
                          type: object
                          properties:
                            text:
                              nullable: true
                        recent_immunization:
                          type: object
                          properties:
                            text:
                              nullable: true
                        other:
                          type: object
                          properties:
                            text:
                              nullable: true
                    heredofamilial_records:
                      type: object
                      properties:
                        diabetes:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              type: string
                        heart_diseases:
                          type: object
                          properties:
                            active:
                              type: boolean
                            text:
                              nullable: true
                        hypertension:
                          type: object
                          properties:
                            text:
                              nullable: true
                        thyroid_diseases:
                          type: object
                          properties:
                            text:
                              nullable: true
                        other:
                          type: object
                          properties:
                            text:
                              nullable: true
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````