Deletes a user
DELETE//v1/users/:username
Deletes a user
Request
Path Parameters
username stringrequired
The username
Responses
- 200
- 401
- 404
Deletes a specific user
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
User not found
Authorization: Authorization
name: Authorizationtype: apiKeydescription: JWT Tokenin: header
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE '/v1/users/:username' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear