Actions17
Overview
This node integrates with the HighLevel API to retrieve detailed information about a specific task associated with a contact. It is particularly useful in scenarios where you need to fetch task details for follow-up, reporting, or automation workflows based on tasks linked to contacts within the HighLevel platform.
For example, you might use this node to:
- Retrieve a task's status and details before sending a notification.
- Pull task information to update a CRM or project management tool.
- Automate reminders or escalations based on task deadlines or completion status.
Properties
| Name | Meaning |
|---|---|
| Contact Email or ID | Select or specify the contact (by email or ID) to which the task belongs. You can choose from a list or provide an expression. |
| Task ID | The unique identifier of the task you want to retrieve. |
Output
The node outputs JSON data representing the full details of the requested task. This typically includes fields such as task title, description, status, due date, assigned user, and any other metadata provided by the HighLevel API for that task.
If the node supports binary data output (not indicated here), it would represent attachments or files related to the task, but this is not evident from the provided code.
Dependencies
- Requires an active connection to the HighLevel API via an OAuth2 authentication credential.
- The node depends on the HighLevel API base URL
https://services.leadconnectorhq.comand expects API version2021-07-28. - Proper configuration of the OAuth2 credential with necessary permissions to access contacts and tasks is mandatory.
Troubleshooting
- Invalid Contact or Task ID: If the specified contact or task ID does not exist or is incorrect, the node will likely return an error or empty result. Verify IDs are correct and accessible.
- Authentication Errors: Missing or expired OAuth2 tokens will cause authentication failures. Ensure the API credentials are valid and refreshed.
- API Rate Limits: Excessive requests may lead to rate limiting by the HighLevel API. Implement retries or backoff strategies if needed.
- Network Issues: Connectivity problems can cause request failures. Check network access and proxy settings if applicable.
Links and References
- HighLevel API Documentation (for detailed API endpoints and data structures)
- n8n Expressions Documentation (for using expressions in property inputs)