Actions100
- Accounts Actions
- Account Users Actions
- Agent Bots Actions
- Users Actions
- Inbox API Actions
- Contacts API Actions
- Conversations API Actions
- Messages API Actions
- CSAT Survey Page Actions
- Account Agent Bots Actions
- Agents Actions
- Canned Responses Actions
- Canned Response Actions
- Custom Attributes Actions
- 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
Overview
This node retrieves detailed information about a specific user from the ChatWoot platform using their numeric ID. It is useful in workflows where you need to fetch and process user data, such as enriching contact profiles, automating support tasks, or integrating user details into other systems.
Example scenarios:
- Automatically fetching user details when a new ticket is created.
- Enriching CRM records with up-to-date user information from ChatWoot.
- Triggering personalized messages based on user attributes.
Properties
| Display Name | Type | Description | Required |
|---|---|---|---|
| Id | Number | The numeric ID of the user on the platform | Yes |
- Id: Enter the unique numeric identifier for the user whose details you want to retrieve from ChatWoot.
Output
The output will be a JSON object containing the details of the specified user. The structure typically includes fields such as:
{
"id": 123,
"name": "John Doe",
"email": "john@example.com",
"created_at": "2023-01-01T12:00:00Z",
// ...other user-specific fields returned by ChatWoot API
}
Note: The exact fields depend on the ChatWoot API response.
Dependencies
- External Service: Requires access to a ChatWoot instance.
- API Credentials: You must configure the
chatwootApicredential in n8n, including the base URL (url) and authentication details. - n8n Configuration: Ensure the node has network access to your ChatWoot server.
Troubleshooting
- Invalid User ID: If an incorrect or non-existent user ID is provided, the node may return a "User not found" error. Double-check the ID value.
- Authentication Errors: If credentials are missing or invalid, you may see errors like "401 Unauthorized." Verify your API key and URL in the credentials.
- Connection Issues: Network problems or incorrect base URL can result in connection errors. Ensure the ChatWoot server is reachable from n8n.