Actions18
- Orders Actions
- Invoices Actions
- Shipments Actions
- Listings Actions
- Finance Actions
- Analytics Actions
- Prices Actions
Overview
This node interacts with the Amazon Selling Partner API to retrieve orders from specified Amazon marketplaces. It is useful for sellers who want to programmatically access order data within a given date range and apply filters such as order status, fulfillment channel, and payment method. For example, a seller can use this node to fetch all unshipped orders created in the last week from the US and UK marketplaces.
Use Case Examples
- Retrieve all orders created between two dates from Amazon.com (US) and Amazon.co.uk (UK) marketplaces.
- Filter orders to only include those that are unshipped and fulfilled by Amazon (AFN).
- Fetch orders with specific payment methods like Cash on Delivery (COD).
Properties
| Name | Meaning |
|---|---|
| Marketplace IDs | Select the Amazon marketplaces to retrieve orders from, e.g., US, Canada, UK. |
| Created After | Filter orders created after this date and time (ISO 8601 format). |
| Created Before | Filter orders created before this date and time (ISO 8601 format). |
| Additional Options | Additional filters and options for retrieving orders, including order statuses, fulfillment channels, payment methods, max results per page, and whether to return all results automatically handling pagination. |
Output
JSON
orderId- Unique identifier for the order.purchaseDate- Date and time when the order was placed.orderStatus- Current status of the order (e.g., Pending, Shipped).fulfillmentChannel- Fulfillment channel used for the order (AFN or MFN).paymentMethod- Payment method used for the order.buyerName- Name of the buyer.shippingAddress- Shipping address details for the order.orderItems- List of items included in the order with details such as SKU, quantity, and price.
Dependencies
- Amazon Selling Partner API
- API authentication token or credentials for Amazon SP-API
Troubleshooting
- Ensure that the API credentials are correctly configured and have the necessary permissions to access order data.
- Check that the date filters (Created After and Created Before) are in valid ISO 8601 format and that Created After is earlier than Created Before.
- If no orders are returned, verify that the selected marketplaces and filters match existing orders in the specified date range.
- Handle API rate limits by implementing retries or delays if the node encounters throttling errors.
Links
- Amazon Selling Partner API - Orders API - Official documentation for the Orders API in Amazon Selling Partner API.