Amazon Selling Partner icon

Amazon Selling Partner

Interact with Amazon Selling Partner API

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 across multiple pages if the order contains many items.

Use Case Examples

  1. Retrieve all items for a specific Amazon order by providing the order ID.
  2. Automatically handle pagination to get every item in a large order without manual intervention.

Properties

Name Meaning
Order ID The Amazon-defined order identifier in the 3-7-7 format, used to specify which order's items to retrieve.
Return All Items A boolean flag indicating whether to return all order items by automatically handling pagination, useful for orders with many items.

Output

JSON

  • orderItems - An array of order item objects retrieved from the specified Amazon order, containing details about each item.

Dependencies

  • Requires Amazon Selling Partner API credentials for authentication and access.

Troubleshooting

  • Ensure the provided Order ID is in the correct 3-7-7 format; otherwise, the API may reject the request.
  • If pagination is not handled correctly, not all order items may be returned when 'Return All Items' is set to false.
  • Common errors include invalid credentials or network issues; verify API keys and network connectivity.
  • If an unknown resource or operation is specified, the node throws an error indicating the invalid input.

Links

Discussion