class Peddler::APIs::VendorDirectFulfillmentPaymentsV1
Selling Partner API
for Direct Fulfillment Payments
The Selling Partner API
for Direct Fulfillment Payments provides programmatic access to a direct fulfillment vendor’s invoice data.
Public Instance Methods
Source
# File lib/peddler/apis/vendor_direct_fulfillment_payments_v1.rb, line 24 def submit_invoice(body, rate_limit: 10.0) path = "/vendor/directFulfillment/payments/v1/invoices" meter(rate_limit).post(path, body:) end
Submits one or more invoices for a vendor’s direct fulfillment orders.
@note This operation can make a static sandbox call. @param body [Hash] The request body containing one or more invoices for vendor orders. @param rate_limit [Float] Requests per second @return [Peddler::Response] The API
response