Actions7
- Billing Actions
- Coupon Actions
- Customer Actions
- PIX QR Code Actions
- Withdraw Actions
Overview
This node integrates with the AbacatePay API to manage customers, among other resources. Specifically, the Customer - Create operation allows users to add a new customer record into the AbacatePay system by providing essential customer details such as name, cellphone, email, and tax ID.
Common scenarios for this node include automating customer onboarding processes in payment or billing workflows, syncing customer data from other systems, or creating customer profiles before issuing invoices or processing payments.
For example, after collecting customer information via a web form, this node can be used to automatically create the customer in AbacatePay, enabling seamless downstream billing or payment operations.
Properties
| Name | Meaning |
|---|---|
| Name | Full name of the customer (required) |
| Cellphone | Customer's cellphone number (required) |
| Customer's email address (required) | |
| Tax ID | Customer's CPF or CNPJ tax identification number (required) |
Output
The node outputs JSON data representing the newly created customer object as returned by the AbacatePay API. This typically includes the customer's unique identifier, provided details, and any metadata assigned by the API.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the AbacatePay API.
- The node needs an API authentication credential configured in n8n to authorize requests.
- Network access to the AbacatePay service endpoint is necessary.
Troubleshooting
Common issues:
- Missing required fields (Name, Cellphone, Email, Tax ID) will cause the API to reject the request.
- Invalid or expired API credentials will result in authentication errors.
- Network connectivity problems may prevent successful API calls.
Error messages:
- Authentication failures: Check that the API key or token is correctly set up and valid.
- Validation errors: Ensure all required properties are filled with valid data formats.
- Rate limiting or server errors: Retry after some time or verify API usage limits.
Links and References
- AbacatePay API Documentation (example placeholder link)
- n8n documentation on creating custom nodes