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

# DELETE /people/{person_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml delete /people/{person_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:
  /people/{person_id}:
    delete:
      tags:
        - Patient Management
      summary: DELETE /people/{person_id}
      operationId: legacy_nimbo_api_delete__people_person_id
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````