> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ach.netevia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deleting a User

> This endpoint allows for the deletion of a user

This API deletes a specific user from the system based on their unique user UUID.

<Info>
  This route is secured with **processor** and **vendor** token authentication.
</Info>

### Endpoint

DELETE **/3p/api/v2/users/\{uuid}**

### Response

<CodeGroup>
  ```json Success (200) theme={"system"}
  {
      "status": true,
      "message": "The user has been deleted successfully.",
      "data": [],
      "errors": null,
      "error_code": null
  }
  ```

  ```json Success (202) theme={"system"}
  {
      "status": true,
      "message": "This user has been scheduled for deletion.",
      "data": [],
      "errors": null,
      "error_code": null
  }
  ```
</CodeGroup>
