Actions113
- 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
- Custom Filters Actions
- Webhooks Actions
- Reports Actions
Overview
This node interacts with the ChatWoot API to retrieve detailed information about a specific account. It is useful when you need to fetch comprehensive data for an individual account by its numeric ID, such as viewing account settings, status, or metadata within an automation workflow.
Practical examples include:
- Automatically retrieving account details to display in a dashboard.
- Using account information to trigger conditional logic in workflows.
- Syncing account data with other systems based on the retrieved details.
Properties
| Name | Meaning |
|---|---|
| Account Id | The numeric ID of the account to retrieve details for |
Output
The node outputs JSON data containing the detailed information of the specified account as returned by the ChatWoot API. This typically includes all relevant fields describing the account's properties and status.
No binary data output is produced by this operation.
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 depends on the
@devlikeapro/n8n-openapi-nodepackage for OpenAPI integration.
Troubleshooting
- Invalid Account Id: If the provided account ID does not exist or is incorrect, the API will likely return an error indicating the account was not found. Verify the account ID before running the node.
- Authentication Errors: Ensure that the API key credential is valid and has sufficient permissions to access account details.
- Network Issues: Connectivity problems to the ChatWoot server can cause request failures. Check network access and the configured base URL.
- API Rate Limits: Excessive requests may lead to rate limiting; handle such errors by adding retry logic or delays.
Links and References
- ChatWoot API Documentation (for detailed API endpoints and data structures)
- n8n OpenAPI Node Integration