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 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 such as payments, refunds, or fees from their Amazon marketplace accounts. 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
- Retrieve all transactions posted after January 1, 2024, for a specific marketplace.
- List transactions posted between two dates with a maximum of 50 results per page.
- 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 narrows down transactions to a specific marketplace. |
| Additional Options | A collection of optional parameters to control the listing behavior, including pagination and result limits. |
Output
JSON
transactionId- Unique identifier of the transaction.transactionDate- Date when the transaction was posted.transactionType- Type of the transaction, e.g., payment, refund, fee.amountcurrencyCode- Currency code of the transaction amount.value- Monetary value of the transaction.
marketplaceId- Identifier of the marketplace where the transaction occurred.
Dependencies
- Amazon Selling Partner API
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 correctly managed; use 'Return All Results' to simplify fetching all data.
- API authentication errors may occur if the Amazon Selling Partner API credentials are missing or invalid; verify credentials and permissions.
Links
- Amazon Selling Partner API - Finance API Reference - Official documentation for the Finance API endpoints, including listing transactions.