autonomous.contact/public/api/users/:id
2025-06-25 20:51:29 -07:00
..
index.ts feature: signup and login work 2025-06-25 20:51:29 -07:00
README.md docs: improve some READMEs 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)