module Ruby::Identitas::Endpoints::Internal::Password
Public Instance Methods
user_password(options = {}, headers = {})
click to toggle source
# File lib/ruby/identitas/endpoints/internal/password.rb, line 6 def user_password(options = {}, headers = {}) headers.merge!({AuthKey: @api_key}) endpoint = build_endpoint("/v1/internal/users/password") self.class.post(endpoint, query: options, headers: headers) end