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 syncing customer databases.
Practical examples include:
- Automatically creating a customer profile in Omniwallet after a new user signs up on your website.
- Syncing customer data from a CRM or e-commerce platform into Omniwallet for unified management.
- Batch importing multiple customers by feeding JSON objects with their details.
Properties
| Name | Meaning |
|---|---|
| Customer Data | A JSON object containing the fields and values to create the customer in Omniwallet. This should match the expected customer schema of 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 JSON structure corresponds to the data field in the API response or the entire response if data is not present.
No binary data output is produced by this node.
Dependencies
- Requires an active connection to the Omniwallet API using an API key or token credential configured in n8n.
- The node depends on a helper function (
omniwalletApiRequest) to handle HTTP requests to the Omniwallet API endpoint/customers. - Proper network access to the Omniwallet service must be available.
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 credentials configuration.
- Validation errors from the API usually mean required customer fields are missing or malformed; check the JSON input carefully.
- Timeout or connection errors suggest network issues; ensure the server running n8n can access the Omniwallet API endpoint.
Links and References
- Omniwallet API documentation (refer to the official Omniwallet developer portal for detailed API specs)
- n8n documentation on creating custom nodes and handling JSON inputs