Gestor Clientes Max - Cliente
Gerenciar clientes: criar, buscar, atualizar e deletar clientes via API. Use para operações relacionadas a cadastro de clientes.
Overview
This node integrates with the "Gestor Clientes Max" API to manage client records. It supports operations to create, retrieve (all or by ID), update, and delete clients. This is useful for automating client management workflows such as syncing client data from other systems, updating client details programmatically, or cleaning up client records.
For example:
- Automatically fetch a client's details by their ID to display in a dashboard.
- Create new client entries when a form is submitted on a website.
- Update client contact information based on external CRM changes.
- Delete client records that are no longer needed.
Properties
| Name | Meaning |
|---|---|
| Client ID | The unique numeric identifier of the client. Required for "Get By ID", "Update", and "Delete" operations. |
Output
The node outputs JSON data representing the client(s) returned or affected by the operation:
- For Get By ID, it returns the JSON object of the client with the specified ID.
- For Get All, it returns an array of all client objects.
- For Create and Update, it returns the JSON object of the created or updated client.
- For Delete, it returns the response from the API confirming deletion.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential to authenticate requests to the Gestor Clientes Max API.
- The base URL and API key are obtained from the configured credentials.
- Uses HTTP requests to communicate with the API endpoints.
Troubleshooting
Common issues:
- Missing or invalid Client ID when required will cause errors.
- Invalid or expired API key will result in authentication failures.
- Network connectivity issues can cause request timeouts or failures.
- Providing improperly formatted dates or data types may cause API validation errors.
Error messages:
"Unknown operation: <operation>"indicates an unsupported operation was requested.- API error responses will be passed through; check the message for details like "Not Found" or "Unauthorized".
Resolutions:
- Ensure the Client ID is provided and valid for operations that require it.
- Verify the API key credential is correctly set up and has necessary permissions.
- Confirm network access to the API endpoint.
- Validate input data formats before running the node.
Links and References
- Gestor Clientes Max API Documentation (link not provided in source code)