WiizoChat
Actions12
Overview
The node provides integration with the Wiizo API, enabling various operations related to messaging, contacts, tickets, companies, tags, and scheduling. Specifically, the "✏️ Atualizar Contato" (Update Contact) operation allows users to update existing contact information such as name, email, and phone number in the Wiizo system.
This node is beneficial for automating customer relationship management workflows where contact details need to be kept up-to-date automatically from other systems or triggers. For example, when a customer's phone number or email changes in a CRM, this node can update the corresponding contact record in Wiizo without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Nome | The contact's name. Required for creating or updating a contact. |
| The contact's email address. Optional for creating or updating a contact. | |
| Telefone | The contact's phone number. Required for creating or updating a contact. |
| ID do Contato | The unique identifier of the contact to update or delete. Required for updating contact. |
Output
The node outputs JSON data representing the response from the Wiizo API after performing the update contact operation. This typically includes confirmation of the update or details of the updated contact. The output does not include binary data.
Example output structure (simplified):
{
"success": true,
"contactId": 123,
"updatedFields": {
"name": "New Name",
"email": "new.email@example.com",
"phone": "5511999999999"
}
}
Dependencies
- Requires an API key credential for authenticating with the Wiizo API.
- The base URL for the Wiizo API must be configured in the credentials.
- Uses HTTP requests to communicate with the Wiizo REST endpoints.
Troubleshooting
- Missing Credentials: If the API key credential is not set or invalid, the node will throw an error indicating credentials are missing.
- Invalid Contact ID: Providing a non-existent or incorrect contact ID will likely result in an API error; verify the contact ID before updating.
- Required Fields Missing: The node requires at least the contact ID, name, and phone number for updates; omitting these may cause errors.
- API Errors: Network issues or API downtime can cause request failures; check connectivity and Wiizo service status.
- To resolve errors, ensure all required fields are correctly filled, credentials are valid, and the Wiizo API is reachable.
Links and References
- Wiizo API Documentation (Assumed link, replace with actual if available)
- n8n HTTP Request Node documentation for understanding authentication and request options: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/