Documentation Index
Fetch the complete documentation index at: https://mintlify.com/0xfelaback/Social-Media-Activity-Feed/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
This endpoint requires authentication using a JWT Bearer token.Path Parameters
The username of the user account to delete
Request Example
Response
Success Response
Status Code:204 No Content
The user account was successfully deleted. No response body is returned.
Error Responses
Status Code:401 Unauthorized
Returned when no valid JWT Bearer token is provided in the request.
Status Code: 404 Not Found
Implementation Details
Fromauth.endpoints.cs:99-107, the delete handler:
- Queries the database for the user by username
- Returns
404 Not Foundif the user doesn’t exist - Removes the user entity from the database context
- Saves changes to persist the deletion
- Returns
204 No Contenton success
Related Endpoints
- Update user - Modify user profile and account details