Actions113
- Contacts Actions
- Contact Actions
- Automation Rule Actions
- Help Center Actions
- Conversations Actions
- Conversation Assignment Actions
- Conversation Labels Actions
- Inboxes Actions
- Messages Actions
- Integrations Actions
- Teams Actions
- Custom Filters Actions
- Webhooks Actions
- Reports Actions
- Accounts Actions
- Account Users Actions
- Agent Bots Actions
- Users Actions
- Contacts API Actions
- Inbox API Actions
- Conversations API Actions
- Messages API Actions
- CSAT Survey Page Actions
- Account Agent Bots Actions
- Agents Actions
- Canned Responses Actions
- Custom Attributes Actions
- Canned Response Actions
Overview
This node integrates with the ChatWoot API to create a new user in the system. It is useful for automating user management tasks such as onboarding new users, syncing user data from other systems, or bulk-creating users based on external inputs. For example, you could use this node to automatically add users who sign up on your website into ChatWoot for customer support tracking.
Properties
| Name | Meaning |
|---|---|
| Name | The full name of the user to be created. |
| The email address of the user. | |
| Password | The password for the user account. Must include uppercase, lowercase letters, a number, and a special character. |
| Custom Attributes | A JSON object containing any additional custom attributes you want to associate with the user. |
Output
The node outputs JSON data representing the newly created user as returned by the ChatWoot API. This typically includes user details such as ID, name, email, creation timestamp, and any custom attributes set. There is no binary output.
Dependencies
- Requires an API key credential for authenticating with the ChatWoot API.
- The base URL for the ChatWoot instance must be configured in the node credentials.
- The node uses the
@devlikeapro/n8n-openapi-nodepackage to handle OpenAPI-based requests.
Troubleshooting
- Invalid Password Format: If the password does not meet complexity requirements (uppercase, lowercase, number, special character), the API may reject the request. Ensure the password complies with these rules.
- Authentication Errors: If the API key or base URL is incorrect or missing, authentication will fail. Verify that the correct credentials are configured.
- Malformed Custom Attributes: The
custom_attributesfield expects valid JSON. Invalid JSON syntax will cause errors. Use proper JSON formatting. - Missing Required Fields: Omitting required fields like
name,email, orpasswordwill result in API errors. Make sure all mandatory properties are provided.