class Shipstation::Shipment
Public Class Methods
create_label(params = {})
click to toggle source
# File lib/shipstation/shipment.rb, line 10 def create_label(params = {}) Shipstation.request(:post, 'shipments/createlabel', params) end
get_rates(params = {})
click to toggle source
# File lib/shipstation/shipment.rb, line 6 def get_rates(params = {}) Shipstation.request(:post, "shipments/getrates", params) end
void_label(params = {})
click to toggle source
# File lib/shipstation/shipment.rb, line 14 def void_label(params = {}) Shipstation.request(:post, 'shipments/voidlabel', params) end