DELETE · Delete user

Remove a user from the caller's org. Refuses to drop the last owner.

DELETE /api/users/:id

Remove a user from the caller's org. Only org owners may do this.

The user's account isn't deleted (they may belong to other orgs); we just remove their org_members row and revoke every api_tokens row they had scoped to this org. Memories they authored stay in place — those belong to the org, not the user.

curl -X DELETE https://www.mnueron.com/api/users/01HQ… \
  -H "Authorization: Bearer $MNUERON_API_TOKEN"

Response

204 No Content on success.

Errors

StatusReason
403Caller is not an owner
404Target user is not a member of this org
409Refused — target is the last remaining owner
Last updated 2026-05-24edit