Overview
This node creates a new customer record in the Omniwallet system by sending customer data to the Omniwallet API. It is useful when you want to automate adding customers into Omniwallet from other workflows, such as after collecting customer information via forms or CRM systems. For example, after a user submits a signup form, this node can create their customer profile in Omniwallet automatically.
Properties
| Name | Meaning |
|---|---|
| Customer Data | JSON object containing fields to create a customer with. This should include all necessary customer details as expected by the Omniwallet API. |
Output
The node outputs an array of JSON objects representing the created customer(s) as returned by the Omniwallet API. The output structure corresponds directly to the data field in the API response and contains the newly created customer details.
Dependencies
- Requires an active connection to the Omniwallet API.
- Requires an API authentication credential configured in n8n for accessing the Omniwallet service.
- The node uses a POST request to the
/customersendpoint of the Omniwallet API.
Troubleshooting
Common issues:
- Invalid or incomplete customer data JSON may cause the API to reject the request.
- Missing or incorrect API credentials will result in authentication errors.
- Network connectivity problems can prevent reaching the Omniwallet API.
Error messages:
- Authentication failures typically indicate invalid or missing API keys; verify your credentials.
- Validation errors from the API usually mean required customer fields are missing or malformed; check the JSON input.
- Timeout or network errors suggest connectivity issues; ensure the API endpoint is reachable.
Links and References
- Omniwallet API documentation (refer to the official Omniwallet API docs for detailed customer creation schema and requirements).
