> ## 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 /accounts/{account_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml put /accounts/{account_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:
  /accounts/{account_id}:
    put:
      tags:
        - Account Management
      summary: PUT /accounts/{account_id}
      operationId: legacy_nimbo_api_put__accounts_account_id
      parameters:
        - name: account_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                account:
                  type: object
                  properties:
                    account_setup_completed:
                      type: boolean
                    configuration:
                      type: object
                      properties:
                        locale:
                          type: string
                        schedule:
                          type: object
                          properties:
                            fri:
                              type: array
                              items:
                                type: string
                                format: style
                            mon:
                              type: array
                              items:
                                type: string
                            thu:
                              type: array
                              items:
                                type: string
                                format: style
                            tue:
                              type: array
                              items:
                                type: string
                            wed:
                              type: array
                              items:
                                type: string
                                format: style
                            weeks_limit:
                              type: object
                              properties:
                                id:
                                  type: integer
                                time:
                                  type: integer
                                interval:
                                  type: string
                            consultation_duration:
                              type: integer
                        timezone:
                          type: string
                        consultation:
                          type: object
                          properties:
                            odontogram:
                              type: boolean
                            physical_exam:
                              type: boolean
                            treatment_plan:
                              type: boolean
                        custom_forms:
                          type: object
                          properties:
                            consultation:
                              type: object
                              properties:
                                vital_signs_elements:
                                  type: object
                                  properties:
                                    height:
                                      type: boolean
                                    weight:
                                      type: boolean
                                    systole:
                                      type: boolean
                                    diastole:
                                      type: boolean
                                    body_mass:
                                      type: boolean
                                    heart_rate:
                                      type: boolean
                                    temperature:
                                      type: boolean
                                    respiratory_rate:
                                      type: boolean
                                    oxygen_saturation:
                                      type: boolean
                                    abdominal_perimeter:
                                      type: boolean
                                lab_test_results_elements:
                                  type: object
                                  properties:
                                    glucose:
                                      type: boolean
                                    measurement_type:
                                      type: boolean
                                    result_obtained_through:
                                      type: boolean
                                    pregnant_without_diabetes:
                                      type: boolean
                            medical_history:
                              type: object
                              properties:
                                diet:
                                  type: boolean
                                perinatal:
                                  type: boolean
                                postnatal:
                                  type: boolean
                                psychiatric:
                                  type: boolean
                                vaccines_mx:
                                  type: boolean
                                pathological:
                                  type: boolean
                                heredo_familial:
                                  type: boolean
                                non_pathological:
                                  type: boolean
                                gineco_obstetrics:
                                  type: boolean
                        custom_roles:
                          type: object
                          properties:
                            all_agendas:
                              type: boolean
                            administrator:
                              type: boolean
                            restricted_medic:
                              type: boolean
                        weekly_email:
                          type: boolean
                        prescription_copy:
                          type: boolean
                        interface_language:
                          type: string
                        prescription_template:
                          type: string
                        assistant_has_charges_access:
                          type: boolean
                        assistant_has_clinical_access:
                          type: boolean
                        print_vital_signs:
                          type: boolean
                        print_diagnostics:
                          type: boolean
                    email:
                      type: string
                      format: email
                    eprescription_enabled:
                      type: boolean
                    name:
                      type: string
                    pending_confirmation_email:
                      type: string
                      format: email
                    physician_institution:
                      type: string
                    physician_license:
                      type: string
                    username:
                      type: string
                    cellphone:
                      type: string
                    organization_id:
                      type: integer
                    active:
                      type: boolean
                    bio:
                      type: string
                    office_state_id:
                      type: string
                    physician_specialty_id:
                      type: string
                    cellphone_country_id:
                      type: string
                      format: color
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````