Skip to main content
DELETE
http://localhost:3000
/
users
/
{id}
curl -X DELETE 'https://api.example.com/users/user_jane' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Path Parameters

id
string
required
The user ID to delete

Response

Returns 204 No Content on success.
Deleting a user will also remove their tenant memberships and associated subject.
curl -X DELETE 'https://api.example.com/users/user_jane' \
  -H 'Authorization: Bearer YOUR_TOKEN'