autonomous.contact/public/api/users/:user_id
2025-10-25 14:57:28 -07:00
..
invites feature: start to lay groundwork for reactions 2025-10-12 16:25:42 -07:00
signups feature: switch everything to an invite-only model 2025-10-08 17:38:23 -07:00
watches feature: watches on the backend, need frontend implementation for 2025-10-25 14:57:28 -07:00
index.ts feature: require invites 2025-10-08 14:42:01 -07:00
README.md feature: rooms and events implemented on the backend 2025-06-27 17:54:04 -07:00

/api/users/:user_id

Interact with a specific user.

GET /api/users/:user_id

Get the user specified by :user_id. (user match/admin)

PUT /api/users/:user_id

Update the user specified by :user_id. (user match/admin)

{
	username?: string; // update username
}

DELETE /api/users/:user_id

Delete the user specified by :user_id. (user match/admin)