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 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
- 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. Format: ISO 8601. This is a required filter to define the start date for transaction retrieval. |
| Posted Before | A date used for selecting transactions posted before (but not on) a specified date. Format: ISO 8601. This optional filter defines the end date for transaction retrieval. |
| Marketplace ID | The marketplace identifier for which transactions should be returned. This optional filter limits results to a specific Amazon marketplace. |
| Additional Options | Additional parameters to control the listing behavior, including pagination and result limits. |
Output
JSON
transactionId- Unique identifier of the transaction.postedDate- The date the transaction was posted.amount- The monetary amount involved in the transaction.currencyCode- The currency code of the transaction amount.transactionType- Type or category of the transaction.marketplaceId- Identifier of the marketplace where the transaction occurred.
Dependencies
- Amazon Selling Partner API credentials (API key and authentication token)
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 errors may occur if 'Next Token' is invalid or expired; use 'Return All Results' option to handle pagination automatically.
- API rate limits or authentication errors may cause failures; check API credentials and usage limits.
Links
- Amazon Selling Partner API - Finance API Reference - Official documentation for the Finance API, including transaction listing endpoints and parameters.