class Peddler::APIs::VendorDirectFulfillmentSandboxTestData20211028
Selling Partner API
for Vendor Direct Fulfillment Sandbox Test Data
The Selling Partner API
for Vendor Direct Fulfillment Sandbox Test Data provides programmatic access to vendor direct fulfillment sandbox test data.
Public Instance Methods
Source
# File lib/peddler/apis/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.rb, line 23 def generate_order_scenarios(body) path = "/vendor/directFulfillment/sandbox/2021-10-28/orders" post(path, body:) end
Submits a request to generate test order data for Vendor Direct Fulfillment API
entities.
@note This operation can make a dynamic sandbox call. @param body [Hash] The request payload containing parameters for generating test order data scenarios. @return [Peddler::Response] The API
response
Source
# File lib/peddler/apis/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.rb, line 36 def get_order_scenarios(transaction_id) path = "/vendor/directFulfillment/sandbox/2021-10-28/transactions/#{percent_encode(transaction_id)}" get(path) end
Returns the status of the transaction indicated by the specified transactionId. If the transaction was successful, also returns the requested test order data.
@note This operation can make a dynamic sandbox call. @param transaction_id [String] The transaction identifier returned in the response to the generateOrderScenarios
operation.
@return [Peddler::Response] The API
response