Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fieldaware_api / lib / fieldaware_api / client / customers.rb
Size: Mime:
module FieldawareApi
  class Client
    module Customers

      def customers(params = {})
        uuids = get_uuids("customer/", "Customer", params)
        uuids.map{|c|customer(c)} if uuids
      end

      def customer(id, params = {})
        get("customer/#{id}", params)
      end

    end
  end
end