Actions18
- Finance Actions
- Analytics Actions
- Orders Actions
- Invoices Actions
- Shipments Actions
- Listings 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 their order data across multiple marketplaces within a given date range. For example, a seller can use this node to fetch all orders created between two dates from Amazon US and Canada marketplaces, filter by order status or fulfillment channel, and handle pagination automatically to get all results.
Use Case Examples
- Retrieve all orders created between 2023-01-01 and 2023-01-31 from Amazon US and Canada marketplaces.
- Fetch orders with status 'Shipped' or 'Unshipped' from Amazon UK marketplace.
- Get orders fulfilled by Amazon (AFN) with payment method COD from Amazon Japan marketplace.
Properties
| Name | Meaning |
|---|---|
| Marketplace IDs | Select the marketplaces to retrieve orders from, e.g., Amazon US, Canada, UK, etc. |
| Created After | Filter orders created after this date and time (ISO 8601 format). Required. |
| Created Before | Filter orders created before this date and time (ISO 8601 format). Required. |
| Additional Options | Optional filters and settings for the order retrieval, including order statuses, fulfillment channels, payment methods, max results per page, and whether to return all results automatically. |
Output
JSON
orderId- Unique identifier of the order.purchaseDate- Date and time when the order was placed.orderStatus- Current status of the order, e.g., Pending, Shipped.fulfillmentChannel- Fulfillment channel for the order, e.g., 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.
Dependencies
- Amazon Selling Partner API credentials
Troubleshooting
- Ensure that the Amazon Selling Partner API credentials are correctly configured and have the necessary permissions to access order data.
- Verify that the marketplace IDs selected are valid and correspond to the seller's registered marketplaces.
- Check that the date filters (Created After and Created Before) are in valid ISO 8601 format and that Created After is before Created Before.
- If the node returns an error about unknown operations or resources, confirm that the resource is set to 'Orders' and the operation to 'Get Orders'.
- If pagination is enabled (Return All Results), be aware that large data sets may take longer to retrieve and could hit API rate limits.
Links
- Amazon Selling Partner API - Orders API - Official documentation for the Amazon Selling Partner Orders API, detailing endpoints, parameters, and usage.