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

# PUT /people/{person_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml put /people/{person_id}
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:
  /people/{person_id}:
    put:
      tags:
        - Patient Management
      summary: PUT /people/{person_id}
      operationId: legacy_nimbo_api_put__people_person_id
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                person:
                  type: object
                  properties:
                    first_name:
                      type: string
                    last_name:
                      type: string
                    born_at:
                      type: string
                      format: date
                    gender:
                      type: string
                    phone_country_id:
                      type: string
                      format: color
                    telephone2:
                      type: string
                    email:
                      type: string
                      format: email
                    account_id:
                      type: string
                    person_attributes:
                      type: object
                      properties:
                        send_reminders:
                          type: boolean
                        insurance_name:
                          type: string
                        insurance_file:
                          type: string
                        insurance_number:
                          type: string
                        insurance_plan:
                          type: string
                        insurance_type:
                          type: string
                        insurance_taxed:
                          type: boolean
                        insurance_claim_insured_name:
                          type: string
                        insurance_claim_birthplace:
                          type: string
                        insurance_claim_folio:
                          type: string
                        insurance_claim_number:
                          type: string
                        insurance_claim_movement:
                          type: string
                        insurance_claim_adjuster:
                          type: string
                        insurance_claim_risk:
                          type: string
                        insurance_claim_sinister_date:
                          type: string
                          format: date
                        insurance_claim_issue_date:
                          type: string
                          format: date
                        insurance_claim_initial_date:
                          type: string
                          format: date
                        insurance_claim_admission_date:
                          type: string
                          format: date
                        insurance_claim_departure_date:
                          type: string
                          format: date
                        insurance_claim_institution_name:
                          type: string
                        insurance_claim_institution_address:
                          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  person:
                    type: object
                    properties:
                      id:
                        type: integer
                      first_name:
                        type: string
                      last_name:
                        type: string
                      links:
                        type: object
                        properties:
                          consultations:
                            type: string
                          consultation_lab_test_results:
                            type: string
                          consultation_schedules:
                            type: string
                          vital_signs_sets:
                            type: string
                          medical_history:
                            type: string
                          deffers:
                            type: string
                          medical_notes:
                            type: string
                          insurance_coverage:
                            type: string
                      full_name:
                        type: string
                      telephone:
                        nullable: true
                      email:
                        nullable: true
                      born_at:
                        type: string
                        format: date
                      gender:
                        type: string
                      avatar_url_small:
                        type: string
                      avatar_url_medium:
                        type: string
                      telephone2:
                        type: string
                      address_state_id:
                        type: integer
                      address_city:
                        nullable: true
                      address_street:
                        nullable: true
                      address_zipcode:
                        nullable: true
                      identity_number:
                        nullable: true
                      account_id:
                        type: integer
                      avatar_url_large:
                        type: string
                      notes:
                        nullable: true
                      person_attributes:
                        type: object
                      phone_country_id:
                        type: integer
                      is_migrated:
                        type: boolean
                      without_cellphone:
                        type: boolean
                      nimbochat_invitation_sent:
                        type: boolean
                      medical_record:
                        nullable: true
                      cirrus_patient_id:
                        nullable: true
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````