class G5YglClient20::GetLeadsForPropertyRequest

Public Class Methods

execute(auth,url, subscription_id,property_id) click to toggle source

This is merely placeholder code - this feature is not implemented

# File lib/g5_ygl_client_20/requests/get_leads_for_property_request.rb, line 4
def self.execute(auth,url, subscription_id,property_id)
  response = HTTParty.get("#{url}#{property_id}/leads?subscriptionId=#{subscription_id}",
                          :headers => {"Authorization" => auth,
                                       "Host" => HOST,
                                       "Accept" => "application/json"})
end