Sha256: 64ec6250898db6ee6bad452083bfbfe0369c47834c661c0cf646cd1071ffca19
Contents?: true
Size: 477 Bytes
Versions: 18
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true # A Tracker object contains all of the tracking information for a package. class EasyPost::Tracker < EasyPost::Resource # Create multiple Tracker objects in bulk. def self.create_list(params = {}, api_key = nil) url = "#{self.url}/create_list" new_params = { 'trackers' => params } EasyPost.make_request(:post, url, api_key, new_params) true # This endpoint does not return a response so we return true here instead end end
Version data entries
18 entries across 18 versions & 1 rubygems