Actions37
- Offer Item Actions
- Customer Actions
- Dispute Actions
- Installment Actions
- Line Item Actions
- Offer Actions
- Payment Actions
- Payment Method Actions
- Payment Plan Actions
- Payment Schedule Actions
- Refund Actions
Overview
This node integrates with the Partially Payment Plans API to manage "Offer Item" resources. Specifically, the List operation retrieves all offer items associated with a given Offer ID. This is useful when you want to fetch and process all items linked to a particular offer in your workflow.
Common scenarios include:
- Retrieving all items of an offer to display or analyze them.
- Automating workflows that depend on the details of offer items.
- Syncing offer item data with other systems or databases.
Example: You have an offer with multiple items (e.g., products or services) and want to list all these items to generate a report or trigger further processing based on each item's details.
Properties
| Name | Meaning |
|---|---|
| Offer ID | The unique identifier of the offer whose items you want to list. This property is required for the List operation on Offer Item resource. |
Output
The output is a JSON array where each element represents an offer item object retrieved from the API. Each offer item typically includes fields such as:
id: Unique identifier of the offer item.name: Name of the offer item.amount_type: Type of amount (e.g., fixed, percentage).amount: The value of the amount.offer_id: The ID of the offer this item belongs to.
The node does not output binary data.
Dependencies
- Requires connection to the Partially Payment Plans API.
- Requires an API authentication credential configured in n8n to authorize requests.
- The node uses internal helper functions to make HTTP requests to the API endpoints.
Troubleshooting
- Missing or invalid Offer ID: Since the Offer ID is required, ensure it is provided and correctly formatted. Errors may occur if this parameter is empty or incorrect.
- API authentication errors: Verify that the API key or token credential is properly set up and has sufficient permissions.
- Network or connectivity issues: Ensure that the n8n instance can reach the Partially API endpoint.
- Unexpected API responses: If the API returns errors or unexpected data, check the API documentation and confirm that the offer exists and has associated items.
Links and References
- Partially Payment Plans API Documentation (example placeholder, replace with actual URL if available)