Delete User
This API deletes an existing user account identified by its unique ID. Once deleted, the user account can no longer be used or managed within the system.
Endpoint Details
| URL | /v1/auth/users/id |
| Method | DELETE |
| Authorization | Bearer Token |
Request Headers
| Header | Type | Description |
|---|---|---|
| Content-Type | String | Must be application/json |
Request Path
To delete a specific user, use the following request format:
/v1/auth/users/d28c9ea0-3d57-4354-bfbe-8aaff6ba432a
Path Parameter
| Parameter | Type | Description |
|---|---|---|
| id | UUID | Unique identifier of the user to delete |
Response
Here is an example response after the request has been successfully processed:
Response
{
"success": true
}
Field Descriptions
| Field | Type | Description |
|---|---|---|
| success | Boolean | Indicates whether the user was successfully deleted |
info
- A valid Bearer Token is required to access this endpoint.
- The
idpath parameter must reference an existing user. - Deleting a user is permanent and cannot be undone.