Method: Auth0::Api::V2::Users#delete_user_authenticators
- Defined in:
- lib/auth0/api/v2/users.rb
#delete_user_authenticators(user_id) ⇒ Object
Delete all authenticators
117 118 119 120 121 |
# File 'lib/auth0/api/v2/users.rb', line 117 def delete_user_authenticators(user_id) raise Auth0::MissingUserId, 'Must supply a valid user_id' if user_id.to_s.empty? path = "#{users_path}/#{user_id}/authenticators" delete(path) end |