module Shipstation::APIOperations::Retrieve

Public Instance Methods

retrieve(object_id, params = {}) click to toggle source
# File lib/shipstation/api_operations/retrieve.rb, line 5
def retrieve(object_id, params = {})
  response = Shipstation.request(:get, "#{class_name.downcase.pluralize}/#{object_id}", params)
  return response
end