module Milkbottle::Client::Tokens
Public Instance Methods
create_internal_user_token(email, password, options = {})
click to toggle source
# File lib/milkbottle/client/tokens.rb, line 4 def create_internal_user_token(email, password, options = {}) post "/token", options.merge({EmailAddress: email, Password: password}) end