Delete Patient

Endpoint: /v1/patients/delete

Method: DELETE

POST Body

Param

Type

Description

ID

String

Required. Patient ID

AccountID

String

Required. Account (clinic) ID

Request Body (JSON)

{
    "ID": "67561b9ae8ba20283612fc73", // Required: Patient ID
    "AccountID": "674a51bf84090f01bec2fda7" // Required: Unique identifier for the associated clinic
}

Responses:

Success Response (200)

{
    "message": "Patient Deleted Successfully"
}

Error Response (401)

{
    "message": "Access Denied"
}

Last updated