Delete a User
DELETE /user/users/delete/
The DELETE /user/users/delete/
endpoint allows an admin to delete a user from the system.
Parameters
This endpoint does not require any parameters.
Responses
Code
Description
204
No Content. The user was successfully deleted.
Example Request
DELETE /user/users/delete/ HTTP/1.1
Host: api.example.com
Authorization: Bearer <your_access_token>
Example Response
Status Code: 204 No Content
The response body is empty as the operation was successful.
Last updated