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
- Webhooks Actions
- Teams Actions
- Custom Filters Actions
- Reports Actions
Overview
This node interacts with the Contacts API of a messaging platform to retrieve detailed information about a specific contact. It is useful when you need to fetch up-to-date data for a contact that was previously created or identified, such as retrieving profile details, status, or metadata associated with that contact.
Practical examples include:
- Fetching contact details before sending a personalized message.
- Synchronizing contact information in your CRM or database.
- Displaying contact info in dashboards or reports.
Properties
| Name | Meaning |
|---|---|
| Inbox Identifier | The unique identifier of the inbox channel obtained from the API. |
| Contact Identifier | The source ID of the contact obtained when the contact was created. |
Output
The node outputs JSON data containing the detailed information of the specified contact. This typically includes all available fields returned by the Contacts API for that contact, such as name, email, phone number, status, and any custom attributes.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential for authenticating with the ChatWoot API.
- The base URL for the API must be configured in the node credentials.
- The node depends on the
@devlikeapro/n8n-openapi-nodepackage for OpenAPI integration.
Troubleshooting
- Missing or invalid identifiers: Ensure both the Inbox Identifier and Contact Identifier are correctly provided and correspond to existing entities in the system.
- Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
- Network issues: Check connectivity to the API endpoint and ensure the base URL is correct.
- Unexpected API responses: Confirm that the API version matches the node's expectations and that the contact exists.
Links and References
- ChatWoot API Documentation (general reference for API endpoints)
- n8n OpenAPI Node Integration