ChatWoot icon

ChatWoot

Interact with ChatWoot API

Actions113

Overview

This node allows you to create a new user in the ChatWoot system by providing essential user details such as name, email, password, and any custom attributes. It is useful for automating user management workflows, such as onboarding new users into your customer support platform or syncing user data from other systems.

Practical examples include:

  • Automatically creating a user when a new employee joins your company.
  • Syncing users from a CRM or marketing platform into ChatWoot.
  • Adding users with specific custom attributes for segmentation or role assignment.

Properties

Name Meaning
Name The full name of the user to be created.
Email The email address of the user.
Password The user's password. Must contain 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 object as returned by the ChatWoot API. This typically includes user identifiers, timestamps, and all provided properties including custom attributes.

If the API supports binary data (not indicated here), it would be summarized accordingly, but this node primarily deals with JSON user data.

Dependencies

  • Requires an active connection to the ChatWoot API.
  • Needs an API authentication token configured in the node credentials.
  • The base URL for the ChatWoot instance must be set in the credentials.

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.
  • Missing Required Fields: Omitting required fields like name or email will cause errors. Make sure all mandatory inputs are provided.
  • API Authentication Errors: Incorrect or missing API credentials will result in authentication failures. Verify that the API key/token is correctly configured.
  • Malformed Custom Attributes JSON: The custom attributes field expects valid JSON. Invalid JSON syntax will cause parsing errors. Use proper JSON formatting.

Links and References

Discussion