module PlentyClient::Order::StatusHistory
Constants
- FIND_ORDER_STATUS_HISTORY
- LIST_ORDER_STATUS_HISTORIES
Public Class Methods
find(order_id, headers = {}, &block)
click to toggle source
# File lib/plenty_client/order/status_history.rb, line 13 def find(order_id, headers = {}, &block) get(build_endpoint(FIND_ORDER_STATUS_HISTORY, order: order_id), headers, &block) end
list(headers = {}, &block)
click to toggle source
# File lib/plenty_client/order/status_history.rb, line 17 def list(headers = {}, &block) get(build_endpoint(LIST_ORDER_STATUS_HISTORIES), headers, &block) end