client.user("123").delete();You are viewing the Feeds v2 documentation. Feeds v2 is in maintenance mode and no longer receives new features. New projects should use Feeds v3, a major upgrade in performance, capabilities, and developer experience. To move an existing app, follow the migration guide.
Removing Users
The delete endpoint removes a user by their ID.
resp, err := client.Users().Delete(context.TODO(), "123")
if err != nil {
panic(err)
}When you delete a user it will be converted to a missing reference and throw an error when enriching.