Actions33
- Lead Actions
- Campaign Actions
- Inbox Actions
- LinkedIn Account Actions
- List Actions
- My Network Actions
- Stat Actions
- Webhook Actions
Overview
This node interacts with the HeyReach API to retrieve information about a user's LinkedIn network connections. Specifically, the "Get" operation under the "My Network" resource fetches the network data for a specified sender LinkedIn account. This is useful for scenarios where you want to analyze or process your LinkedIn connections programmatically, such as exporting contacts, monitoring network growth, or integrating LinkedIn network data into CRM systems.
Practical examples include:
- Fetching a paginated list of LinkedIn connections for a given account.
- Automating outreach by processing network contacts.
- Synchronizing LinkedIn network data with other marketing or sales tools.
Properties
| Name | Meaning |
|---|---|
| Sender ID | Unique identifier of the sender LinkedIn account whose network you want to retrieve. |
| Page Number | The page number for pagination; defaults to 0 (the first page). |
| Page Size | The number of items per page, with a maximum of 100; defaults to 10. |
Output
The node outputs JSON data representing the LinkedIn network connections of the specified sender account. The structure typically includes an array of connection objects containing details about each contact in the network. Pagination metadata may also be included depending on the API response.
If the node supports binary data output, it would generally relate to attachments or media associated with the network data, but based on the provided code and properties, this node primarily outputs JSON data.
Dependencies
- Requires an active HeyReach API key credential configured in n8n to authenticate requests.
- Depends on the HeyReach API endpoint
https://api.heyreach.io/api/n8n. - No additional external dependencies are indicated.
Troubleshooting
- Invalid Sender ID: If the sender ID does not correspond to a valid LinkedIn account in HeyReach, the API will likely return an error. Verify the sender ID is correct.
- Pagination Errors: Providing a page number or size outside allowed ranges (e.g., negative numbers or page size > 100) may cause errors or unexpected results. Ensure values are within valid limits.
- Authentication Failures: Missing or invalid API credentials will prevent the node from connecting to HeyReach. Confirm that the API key is correctly set up.
- API Rate Limits: Excessive requests might trigger rate limiting by HeyReach. Implement appropriate delays or retries if needed.
Links and References
- HeyReach API Documentation (general reference for API endpoints and usage)
- LinkedIn Developer Documentation (for understanding LinkedIn account and network concepts)