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

> Creates a patient for an authorized treating account. A mobile number and phone country are required unless without_cellphone is true. Additional validation can depend on the organization country and patient configuration.



## OpenAPI

````yaml /openapi/nimbo_api.yml post /people
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:
    post:
      tags:
        - Patient Management
      summary: POST /people
      description: >-
        Creates a patient for an authorized treating account. A mobile number
        and phone country are required unless without_cellphone is true.
        Additional validation can depend on the organization country and patient
        configuration.
      operationId: legacy_nimbo_api_post__people
      parameters: []
      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
                      description: >-
                        Patient gender value; confirm the values supported by
                        your integration.
                    phone_country_id:
                      type: string
                      description: >-
                        Country catalog ID for the mobile number; required
                        unless without_cellphone is true.
                    telephone2:
                      type: string
                      description: >-
                        Mobile number; required unless without_cellphone is
                        true. Validated for the selected phone country.
                    email:
                      type: string
                      description: May be blank. A supplied email must be valid.
                    account_id:
                      type: string
                    without_cellphone:
                      type: boolean
                      description: Set to true when the patient has no mobile phone.
                    send_welcome_email:
                      type: boolean
                      description: >-
                        Welcome-email option; this field does not establish
                        delivery or consent.
                    address_state_id:
                      type: string
                      description: State ID from the geography catalog.
                    patient_group_ids:
                      type: array
                      items:
                        type: integer
                      description: >-
                        Group IDs from the treating account patient-groups
                        catalog.
                    person_attributes:
                      type: object
                      properties:
                        send_reminders:
                          type: boolean
                          description: Patient reminder preference.
                        identity_number:
                          type: string
                          description: >-
                            Patient identity value; country-specific validation
                            applies.
                  required:
                    - first_name
                    - last_name
                    - gender
                    - account_id
              required:
                - person
        required: true
      responses:
        '201':
          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
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````