autonomous.contact/public/api/users/:id/README.md

22 lines
338 B
Markdown
Raw Normal View History

2025-06-24 16:25:07 -07:00
# /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)