Sha256: 59f49a77c885f7d36095f9d13bbc2d26e0b76db5ebdb02e9544c7e1ff78d5a8e

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

require "peddler/api"

module Peddler
  class << self
    def vendor_direct_fulfillment_sandbox_test_data_2021_10_28(...)
      APIs::VendorDirectFulfillmentSandboxTestData20211028.new(...)
    end
  end

  module APIs
    # 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.
    class VendorDirectFulfillmentSandboxTestData20211028 < API
      # 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
      def generate_order_scenarios(body)
        path = "/vendor/directFulfillment/sandbox/2021-10-28/orders"

        post(path, body:)
      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
      def get_order_scenarios(transaction_id)
        path = "/vendor/directFulfillment/sandbox/2021-10-28/transactions/#{transaction_id}"

        get(path)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
peddler-4.1.1 lib/peddler/apis/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.rb
peddler-4.1.0 lib/peddler/apis/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.rb