Sha256: d52f940430b82580f95498872f3cff3f88db330cac4d3e749cde3db2c12208ae
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true require "peddler/api" module Peddler class << self def vendor_transaction_status_v1(...) APIs::VendorTransactionStatusV1.new(...) end end module APIs # Selling Partner API for Retail Procurement Transaction Status # # The Selling Partner API for Retail Procurement Transaction Status provides programmatic access to status # information on specific asynchronous POST transactions for vendors. class VendorTransactionStatusV1 < API # Returns the status of the transaction that you specify. # # @param transaction_id [String] The GUID provided by Amazon in the 'transactionId' field in response to the post # request of a specific transaction. # @param rate_limit [Float] Requests per second # @return [Peddler::Response] The API response def get_transaction(transaction_id, rate_limit: 10.0) cannot_sandbox! path = "/vendor/transactions/v1/transactions/#{transaction_id}" meter(rate_limit).get(path) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems