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 various resources related to payment plans, offers, customers, payments, and more. Specifically for the Offer resource with the List operation, it retrieves a list of offers from the Partially API. This is useful when you want to fetch multiple offer records for reporting, processing, or further automation.
Common scenarios include:
- Fetching all available offers to display in a dashboard.
- Retrieving offers to analyze pricing or discount strategies.
- Automating workflows that depend on current offer data.
Example: You might use this node to get the latest 10 offers and then send notifications or update your CRM system accordingly.
Properties
| Name | Meaning |
|---|---|
| Limit | Limit the number of results returned. Accepts a number between 1 and 100. Defaults to 10. |
Output
The output is a JSON array where each element represents an offer object as returned by the Partially API. The structure typically includes details about each offer such as its ID, name, description, pricing, and other metadata relevant to the offer.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for authenticating with the Partially Payment Plans API.
- The node uses HTTP requests to communicate with the Partially API endpoints.
- Proper configuration of the API authentication credential in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication errors.
- Exceeding the maximum allowed limit (over 100) may result in validation errors.
- Network connectivity problems can cause request failures.
Error messages:
- Authentication errors usually indicate invalid API keys; verify and update credentials.
- Validation errors about parameters like
per_pagesuggest input values are out of range; ensure the limit is between 1 and 100. - Timeout or connection errors require checking network access and API availability.
Links and References
- Partially Payment Plans API Documentation (replace with actual URL if known)
- n8n documentation on HTTP Request Node for understanding API calls in n8n.