Method: Peddler::APIs::MessagingV1#create_confirm_order_details
- Defined in:
- lib/peddler/apis/messaging_v1.rb
#create_confirm_order_details(amazon_order_id, marketplace_ids, body, rate_limit: 1.0) ⇒ Peddler::Response
Note:
This operation can make a static sandbox call.
Sends a message to ask a buyer an order-related question prior to shipping their order.
128 129 130 131 132 133 134 135 |
# File 'lib/peddler/apis/messaging_v1.rb', line 128 def create_confirm_order_details(amazon_order_id, marketplace_ids, body, rate_limit: 1.0) path = "/messaging/v1/orders/#{amazon_order_id}/messages/confirmOrderDetails" params = { "marketplaceIds" => marketplace_ids, }.compact meter(rate_limit).post(path, body:, params:) end |