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 order items for a specified Amazon order. It is useful for sellers who want to programmatically access detailed information about the items within a particular order, such as for order fulfillment, inventory management, or sales analysis. For example, a seller can input an Amazon order ID and get a list of all items in that order, optionally retrieving all items if the order has multiple pages of items.
Use Case Examples
- Retrieve all items for a specific Amazon order by providing the order ID and setting 'Return All Items' to true.
- Get a limited set of order items by providing the order ID and setting 'Return All Items' to false to handle pagination manually.
Properties
| Name | Meaning |
|---|---|
| Order ID | The Amazon-defined order identifier in 3-7-7 format, used to specify which order's items to retrieve. |
| Return All Items | Boolean flag to determine whether to return all order items by automatically handling pagination or not. |
Output
JSON
orderItems- Array of order items retrieved for the specified order ID.
Dependencies
- Amazon Selling Partner API with appropriate credentials
Troubleshooting
- Ensure the provided Order ID is in the correct 3-7-7 format as defined by Amazon; otherwise, the API may return an error.
- If 'Return All Items' is set to false and the order has many items, pagination must be handled manually to retrieve all items.
- Common errors include authentication failures due to invalid or missing API credentials; verify that the Amazon Selling Partner API credentials are correctly configured.
- Network or API endpoint issues may cause request failures; check the base URL and network connectivity.
Links
- Amazon Selling Partner API Orders Documentation - Official documentation for the Orders API, including details on retrieving order items.