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



## OpenAPI

````yaml /openapi/nimbo_api.yml put /account_profiles/{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:
  /account_profiles/{account_id}:
    put:
      tags:
        - Account Management
      summary: PUT /account_profiles/{account_id}
      operationId: legacy_nimbo_api_put__account_profiles_account_id
      parameters:
        - name: account_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                account_profile:
                  type: object
                  properties:
                    certified_information:
                      type: boolean
                    physician_institution:
                      type: string
                    physician_license:
                      type: string
                    role:
                      type: string
                    office_state_id:
                      type: string
                    physician_specialty_id:
                      type: string
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````