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



## OpenAPI

````yaml /openapi/nimbo_api.yml get /accounts/{account_id}/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:
  /accounts/{account_id}/people:
    get:
      tags:
        - Patient Management
      summary: GET /accounts/{account_id}/people
      operationId: legacy_nimbo_api_get__accounts_account_id_people
      parameters:
        - name: telephone2
          in: query
          schema:
            type: integer
        - name: born_at
          in: query
          schema:
            type: string
        - name: account_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  accounts:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        full_name:
                          type: string
                        email_present:
                          type: boolean
                        validated_form:
                          nullable: true
                        tax_id:
                          nullable: true
                        phone_country_id:
                          type: integer
                        insurance_company_present:
                          type: boolean
                        patient_group_id:
                          nullable: true
          description: Successful response

````