class BandwidthIris::Disconnect

Public Class Methods

create(client, order_name, numbers) click to toggle source
# File lib/bandwidth-iris/disconnect.rb, line 8
def self.create(client, order_name, numbers)
  data = {
    :disconnect_telephone_number_order =>{
      :name => order_name,
      '_nameXmlElement' => 'name',
      :disconnect_telephone_number_order_type => {
          :telephone_number_list => {
            :telephone_number => numbers
          }
        }
    }
  }
  client.make_request(:post, client.concat_account_path(DISCONNECT_PATH), data)[0]
end
get(client, id) click to toggle source
# File lib/bandwidth-iris/disconnect.rb, line 24
def self.get(client, id)
  data = client.make_request(:get, "#{client.concat_account_path(DISCONNECT_PATH)}/#{id}")
  data
end

Public Instance Methods

add_notes(note) click to toggle source
# File lib/bandwidth-iris/disconnect.rb, line 40
def add_notes(note)
  r = @client.make_request(:post, "#{@client.concat_account_path(DISCONNECT_PATH)}/#{id}/notes", {:note => note})
  note_id = Client.get_id_from_location_header(r[1][:location])
  (get_notes().select {|n| n[:id].to_s == note_id }).first
end
get_notes() click to toggle source
# File lib/bandwidth-iris/disconnect.rb, line 30
def get_notes()
  list = @client.make_request(:get, "#{@client.concat_account_path(DISCONNECT_PATH)}/#{id}/notes")[0][:note]
  return [] if !list
  if list.is_a?(Array)
    list
  else
    [list]
  end
end