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



## OpenAPI

````yaml /openapi/nimbo_api.yml post /invitations
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:
  /invitations:
    post:
      tags:
        - Account Management
      summary: POST /invitations
      operationId: legacy_nimbo_api_post__invitations
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                invitation:
                  type: object
                  properties:
                    recipient_email:
                      type: string
                      format: email
                    recipient_password:
                      type: string
                    recipient_name:
                      type: string
                    invitation_for:
                      type: string
                    assistant_patient_access:
                      type: boolean
                    send_email:
                      type: boolean
                    configuration:
                      type: object
                      properties:
                        access_to_clinical:
                          type: boolean
                        access_to_charges:
                          type: boolean
                        custom_roles:
                          type: object
                          properties:
                            administrator:
                              type: boolean
                            restricted_medic:
                              type: boolean
                            all_agendas:
                              type: boolean
                            access_control:
                              type: boolean
                    create_user:
                      type: boolean
                    organization_id:
                      type: string
                    location_id:
                      type: string
                    physician_specialty_id:
                      type: string
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````