# /api/users/:id Interact with a specific user. ## GET /api/users/:id Get the user specified by `:id`. (user match/admin) ## PUT /api/users/:id Update the user specified by `:id`. (user match/admin) ``` { username?: string; // update username } ``` ## DELETE /api/users/:id Delete the user specified by `:id`. (user match/admin)