class EasyPost::Tracker

Public Class Methods

create_list(params={}, api_key=nil) click to toggle source
# File lib/easypost/tracker.rb, line 2
def self.create_list(params={}, api_key=nil)
  url = self.url + '/create_list'
  response = EasyPost.make_request(:post, url, api_key, params)
  return true
end