Repository URL to install this package:
module Razorsync class Client module Contacts def contact_list(customer_id, params = {}) response = get("Contact/List/#{customer_id}", params) end def contact(id, params = {}) response = get("Contact/#{id}", params) end end end end