class BandwidthIris::RemoveImportedTnOrders

Public Class Methods

create_remove_imported_tn_order(client, remove_imported_tn_order) click to toggle source
# File lib/bandwidth-iris/remove_imported_tn_orders.rb, line 26
def self.create_remove_imported_tn_order(client, remove_imported_tn_order)
  data = client.make_request(:post, client.concat_account_path("#{REMOVE_IMPORTED_TN_ORDERS_PATH}"), {:remove_imported_tn_order => remove_imported_tn_order})
  return data
end
get_remove_imported_tn_order(client, order_id) click to toggle source
# File lib/bandwidth-iris/remove_imported_tn_orders.rb, line 14
def self.get_remove_imported_tn_order(client, order_id)
  data = client.make_request(:get, client.concat_account_path("#{REMOVE_IMPORTED_TN_ORDERS_PATH}/#{order_id}"))
  return data
end
get_remove_imported_tn_order_history(client, order_id) click to toggle source
# File lib/bandwidth-iris/remove_imported_tn_orders.rb, line 20
def self.get_remove_imported_tn_order_history(client, order_id)
  data = client.make_request(:get, client.concat_account_path("#{REMOVE_IMPORTED_TN_ORDERS_PATH}/#{order_id}/history"))
  return data
end
get_remove_imported_tn_orders(client, query = nil) click to toggle source
# File lib/bandwidth-iris/remove_imported_tn_orders.rb, line 8
def self.get_remove_imported_tn_orders(client, query = nil)
  data = client.make_request(:get, client.concat_account_path(REMOVE_IMPORTED_TN_ORDERS_PATH), query)
  return data
end