Class: Levelup::Endpoints::LocationOrders

Inherits:
Base
  • Object
show all
Defined in:
lib/levelup/endpoints/location_orders.rb

Overview

The endpoint holding all functions relating to orders for a specific location. This is a v14 endpoint and should not be expected to remain functional indefinitely.

Instance Method Summary collapse

Constructor Details

#initialize(location_id) ⇒ LocationOrders

Returns a new instance of LocationOrders.



6
7
8
# File 'lib/levelup/endpoints/location_orders.rb', line 6

def initialize(location_id)
  self.id = location_id
end

Instance Method Details

#list(merchant_access_token) ⇒ Object

Gets a list of orders made at this location. This list is paginated.

Parameters:

  • merchant_access_token (string)

    An access token for a user that manages this location.



12
13
14
15
# File 'lib/levelup/endpoints/location_orders.rb', line 12

def list(merchant_access_token)
  Requests::ListOrders.new(merchant_access_token: merchant_access_token).
    send_to_api(:get, endpoint_path(:v14))
end