Amazon Selling Partner icon

Amazon Selling Partner

Interact with Amazon Selling Partner API

Overview

This node interacts with the Amazon Selling Partner API to list financial transactions within a specified date range and optional filters. It is useful for sellers or financial analysts who need to retrieve transaction data from Amazon marketplaces for accounting, reconciliation, or reporting purposes. For example, a user can list all transactions posted after a certain date, filter by marketplace ID, and control pagination to handle large result sets.

Use Case Examples

  1. Retrieve all transactions posted after January 1, 2024, for a specific marketplace.
  2. List transactions posted between two dates with a maximum of 50 results per page.
  3. Automatically paginate through all transaction results without manual intervention.

Properties

Name Meaning
Posted After A date used for selecting transactions posted after (or on) a specified date in ISO 8601 format. This is a required filter to limit the transaction results to those posted on or after this date.
Posted Before A date used for selecting transactions posted before (but not on) a specified date in ISO 8601 format. This optional filter limits the transaction results to those posted before this date.
Marketplace ID The identifier of the Amazon marketplace for which transactions should be returned. This optional filter restricts results to a specific marketplace.
Additional Options A collection of optional parameters to control the query behavior, including pagination and result limits.

Output

JSON

  • transactionId - Unique identifier of the transaction.
  • postedDate - The date the transaction was posted.
  • marketplaceId - Identifier of the marketplace where the transaction occurred.
  • amount - The monetary amount involved in the transaction.
  • currencyCode - Currency code of the transaction amount.
  • transactionType - Type or category of the transaction.
  • status - Current status of the transaction.

Dependencies

  • Amazon Selling Partner API
  • API authentication credentials

Troubleshooting

  • Ensure the 'Posted After' date is provided and correctly formatted in ISO 8601 format, as it is required.
  • If no transactions are returned, verify the date range and marketplace ID filters to ensure they match existing data.
  • Pagination issues may arise if 'Return All Results' is false and 'Next Token' is not managed correctly; use 'Return All Results' to automatically handle pagination.
  • API errors may occur due to invalid credentials or network issues; verify API key and endpoint configurations.

Links

Discussion