Actions43
- Subaccount Actions
- Customer Actions
- Refund Actions
- Installment Actions
- Invoice Actions
- Subscription Actions
- Pix Key Actions
- QR Code Static Actions
- Payment Request Actions
- Charge Actions
- Psp (Payment Service Providers) Actions
Overview
This node interacts with the Woovi API to list payment requests. It is useful for retrieving a list of payment requests with options to limit the number of results and skip a certain number of items, which is helpful for pagination or managing large datasets.
Use Case Examples
- Retrieve the first 20 payment requests to display recent transactions.
- Skip the first 10 payment requests and retrieve the next 20 for paginated data processing.
Properties
| Name | Meaning |
|---|---|
| Limit | Number of payment request items to return in the list. |
| Skip | Number of payment request items to skip before starting to return results. |
Output
JSON
id- Unique identifier of the payment request.amount- Amount of the payment request.status- Current status of the payment request.createdAt- Timestamp when the payment request was created.otherProperties- Additional properties returned by the Woovi API for each payment request.
Dependencies
- Woovi API with an API key credential for authentication
Troubleshooting
- Ensure the Woovi API credentials are correctly configured and valid to avoid authentication errors.
- If the node throws an 'Unsupported resource/operation' error, verify that the resource is set to 'Payment Request' and the operation to 'List Payments'.
- Check the API rate limits and handle pagination properly using the 'Limit' and 'Skip' parameters to avoid incomplete data retrieval.
Links
- Woovi API Documentation - Official documentation for the Woovi API endpoints and usage.