Actions13
Overview
This node interacts with the FreeWebStore API to manage customers, products, categories, and orders. Specifically, for the Customer resource with the Create operation, it allows users to create a new customer in the FreeWebStore system by providing customer data as a JSON object. This is useful for automating customer management workflows, such as adding new customers from form submissions or CRM systems.
Use Case Examples
- Creating a new customer with email, forename, surname, and company name to add them to the FreeWebStore customer database automatically.
- Automating customer creation during an e-commerce checkout process.
Properties
| Name | Meaning |
|---|---|
| Customer Data | The customer data to create, provided as a JSON object containing fields like email, forename, surname, and company name. |
Output
JSON
*- The JSON response from the FreeWebStore API representing the created customer object.
Dependencies
- Requires an API key credential for FreeWebStore API authentication.
Troubleshooting
- Common issues include invalid or missing API key, which will cause authentication errors.
- Malformed JSON in the Customer Data property can cause request failures; ensure the JSON is valid and matches the API schema.
- Network or API endpoint issues may cause request failures; verify connectivity and API availability.
Links
- FreeWebStore API Documentation - Official API documentation for FreeWebStore, detailing endpoints and data schemas.