class Shipstation::Order

Public Class Methods

assign_tag(params = {}) click to toggle source
# File lib/shipstation/order.rb, line 17
def assign_tag(params = {})
  response = Shipstation.request(:post, 'orders/addtag', params)

  response
end
create_bulk(params = {}) click to toggle source
# File lib/shipstation/order.rb, line 29
def create_bulk(params = {})
  response = Shipstation.request(:post, 'orders/createorders', params)

  response
end
create_label(params = {}) click to toggle source
# File lib/shipstation/order.rb, line 11
def create_label(params = {})
  response = Shipstation.request(:post, 'orders/createlabelfororder', params)

  response
end
remove_tag(params = {}) click to toggle source
# File lib/shipstation/order.rb, line 23
def remove_tag(params = {})
  response = Shipstation.request(:post, 'orders/removetag', params)

  response
end