ChatWoot icon

ChatWoot

Interact with ChatWoot API

Actions113

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.
Email 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-node package 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_attributes field expects valid JSON. Invalid JSON syntax will cause errors. Use proper JSON formatting.
  • Missing Required Fields: Omitting required fields like name, email, or password will result in API errors. Make sure all mandatory properties are provided.

Links and References

Discussion