class BandwidthIris::AlternateEndUserIdentity

Public Class Methods

get_alternate_caller_information(client, acid) click to toggle source
# File lib/bandwidth-iris/aeui.rb, line 14
def self.get_alternate_caller_information(client, acid)
  response = client.make_request(:get, "#{client.concat_account_path(AEUI_PATH)}/#{acid}")
  return response[0][:alternate_end_user_identifier]
end
get_alternate_end_user_information(client, query=nil) click to toggle source
# File lib/bandwidth-iris/aeui.rb, line 8
def self.get_alternate_end_user_information(client, query=nil)
  response = client.make_request(:get, "#{client.concat_account_path(AEUI_PATH)}", query)
  return response[0]
end