# Delete a user

Removes a user from your account using their user_id. The response confirms the deletion and includes the user's basic details.

Endpoint: DELETE /users/{user_id}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `user_id` (integer, required)
    The unique ID of the user to delete
    Example: 837154

## Response 200 fields (application/json):

  - `http` (integer)
    Example: 200

  - `message` (string)
    Example: "Abby Smith has been removed from your user list."

  - `user_id` (integer)
    Example: 837154

  - `role_id` (string)
    Role previously assigned to the deleted user:
- "1" = User
- "2" = Admin
- "3" = Super-Admin
    Enum: "1", "2", "3"

  - `user_email` (string)
    Example: "abby+jackson@signable.co.uk"

  - `user_name` (string)
    Example: "Abby Smith"


