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

# GET /accounts/me



## OpenAPI

````yaml /openapi/nimbo_api.yml get /accounts/me
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/me:
    get:
      tags:
        - Account Management
      summary: GET /accounts/me
      operationId: legacy_nimbo_api_get__accounts_me
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  account:
                    type: object
                    properties:
                      avatar_url_large:
                        type: string
                      avatar_url_medium:
                        type: string
                      avatar_url_small:
                        type: string
                      certified_information:
                        type: boolean
                      consultations_count:
                        type: integer
                      email:
                        type: string
                        format: email
                      eprescription_enabled:
                        type: boolean
                      account_setup_completed:
                        type: boolean
                      id:
                        type: integer
                      role:
                        type: string
                      links:
                        type: object
                        properties:
                          response_templates:
                            type: string
                          physician_specialty:
                            type: string
                          location:
                            type: string
                      logo_url_large:
                        type: string
                      logo_url_medium:
                        type: string
                      name:
                        type: string
                      username:
                        type: string
                      office_state_id:
                        type: integer
                      people_count:
                        type: integer
                      survey_answered:
                        type: boolean
                      physician_institution:
                        nullable: true
                      physician_license:
                        nullable: true
                      physician_specialty_id:
                        type: integer
                      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
                              physiotherapy:
                                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
                                      lean_body_mass:
                                        type: boolean
                                      respiratory_rate:
                                        type: boolean
                                      oxygen_saturation:
                                        type: boolean
                                      head_circumference:
                                        type: boolean
                                      body_fat_percentage:
                                        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:
                              administrator:
                                type: boolean
                          weekly_email:
                            type: boolean
                          prescription_copy:
                            type: boolean
                          interface_language:
                            type: string
                          prescription_template:
                            type: string
                          skip_cellphone_verification:
                            type: boolean
                          assistant_has_charges_access:
                            type: boolean
                          assistant_has_clinical_access:
                            type: boolean
                      settings:
                        type: object
                      frequent_consultation_causes:
                        type: array
                        items: {}
                      created_at:
                        type: string
                        format: date-time
                      pending_confirmation_email:
                        type: string
                        format: email
                      cellphone:
                        type: string
                      cellphone_verified:
                        type: boolean
                      cellphone_country_id:
                        type: integer
                      affiliation_id:
                        type: integer
                      signature:
                        type: string
                      professional_standard:
                        type: object
                      sis_type_of_staff:
                        nullable: true
                      sis_specify_type_of_staff:
                        nullable: true
                      referral_token:
                        type: string
                      should_reset_password:
                        type: boolean
                      referral_token_meta:
                        nullable: true
                      metadata:
                        type: object
                        properties:
                          campaign:
                            type: object
                            properties:
                              utm_term:
                                nullable: true
                              utm_medium:
                                nullable: true
                              utm_source:
                                nullable: true
                              utm_content:
                                nullable: true
                              utm_campaign:
                                nullable: true
                          referral_token:
                            nullable: true
                      temporary_schedules_expired:
                        nullable: true
                      new_patients_count:
                        type: integer
                      appointments_count:
                        type: integer
                      bio:
                        nullable: true
                      tax_rfc:
                        nullable: true
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````