My API
DELETE/user/{username}

Delete a user account

Deletes a user account from the system by username. The user and all associated data are permanently removed. A 400 is returned for an invalid username, and a 404 is returned when the user does not exist.

1 parameter
usernamestringrequired
The username of the user to delete.

4 status codes
200Returns a confirmation that the user has been successfully deleted.
400Returned when the username supplied is invalid.
404Returned when no user exists with the given username.
defaultUnexpected error

Error handling

username is required and must identify an existing user. A 400 is returned if the username supplied is invalid. A 404 is returned if no user exists with the given username.