Omniwallet - Create Customer icon

Omniwallet - Create Customer

Create a customer in Omniwallet API

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 user information via forms or syncing customer databases.

Practical examples include:

  • Automatically creating a customer profile in Omniwallet when a new user signs up on your platform.
  • Syncing customer data from a CRM or e-commerce system 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 fields and values representing the customer to create in Omniwallet. This should include all necessary customer attributes 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. Each object contains the data fields of the newly created customer record.

No binary data output is produced by this node.

Dependencies

  • Requires an active connection to the Omniwallet API using an API key credential configured in n8n.
  • The node depends on the omniwalletApiRequest helper function to perform authenticated HTTP POST requests to the /customers endpoint 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 successful API calls.
  • Error messages:

    • Authentication failures typically indicate invalid or missing API keys; verify your credential setup.
    • Validation errors from the API usually mean required customer fields are missing or malformed; check the JSON structure.
    • Timeout or network errors suggest connectivity issues; ensure the n8n instance has internet access and the Omniwallet API is reachable.

Links and References

  • Omniwallet API documentation (refer to the official Omniwallet API docs for detailed customer creation schema and requirements).

Discussion