Sha256: bcb1924e33612e936823cf6991cebe7e564feae1d203cae6bd0af3623f15fa63
Contents?: true
Size: 1.75 KB
Versions: 3
Compression:
Stored size: 1.75 KB
Contents
module GoTransverseTractApi module Order class People def self.find_all GoTransverseTractApi.get_response_for(self) end # # @param {Long} eid # def self.find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {String} first_name # def self.find_by_first_name first_name GoTransverseTractApi.get_response_for(self, {first_name: first_name}) end # # @param {String} last_name # def self.find_by_last_name last_name GoTransverseTractApi.get_response_for(self, {last_name: last_name}) end # # @param {Long} billing_account_eid # def self.find_by_billing_account_eid billing_account_eid GoTransverseTractApi.get_response_for(self, {billing_account_eid: billing_account_eid}) end # # @param {Long} eid # @param {Hash} people # def self.update eid, people GoTransverseTractApi.put_request_for(self, {eid: eid}, people) end # # @param {Long} eid # @param {Hash} address # def self.add_address eid, address data = { :addAddressToParty => {}, :person => {eid: eid}, :postalAddress => { :purpose => address[:purpose], :country => address[:country], :city => address[:city], :regionOrState => address[:region_or_state], :postalCode => address[:postal_code], :line1 => address[:line1] } } xml_data = GoTransverseTractApi.generateXML(data, 'addAddressToParty') GoTransverseTractApi.post_request_for(self, {eid: eid}, xml_data, "addAddress") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems