module RubyEtsy::Calls::Receipts

Public Instance Methods

get_receipt(id) click to toggle source
# File lib/ruby-etsy/calls/receipts.rb, line 9
def get_receipt(id)
  client.action("/shops/#{client.shop_id}/receipts/#{id}", http_method: :get)
end
get_receipts(query_params={}) click to toggle source
# File lib/ruby-etsy/calls/receipts.rb, line 5
def get_receipts(query_params={})
  client.action("/shops/#{client.shop_id}/receipts", http_method: :get, query_params: query_params)
end