Actions36
- Authentication Actions
- Profile Actions
- Company Actions
- Network Actions
- Message Actions
- Post Actions
- Recruiter Actions
- Data Actions
Overview
The node integrates with the Linkup API to automate LinkedIn networking activities. Specifically, the Get Network Recommendations operation fetches profile recommendations for users to expand their LinkedIn network by suggesting relevant profiles to connect with.
This node is beneficial in scenarios where users want to automate and scale their LinkedIn networking efforts, such as:
- Finding new professional contacts based on LinkedIn's recommendation engine.
- Automating lead generation or recruitment outreach by discovering potential connections.
- Enhancing social selling strategies by identifying relevant profiles to engage.
For example, a recruiter could use this node to automatically retrieve recommended candidates to connect with, or a sales professional might get suggestions for prospects to add to their network.
Properties
| Name | Meaning |
|---|---|
| Linkup Parameters | Collection of parameters to customize the request: |
| - Invitation Type | Type of invitation (e.g., CONNECTION, ORGANIZATION) |
| - Number of Results | Number of recommended profiles to retrieve (default 10) |
| - Start Page | First page of results to retrieve (default 1) |
| - End Page | Last page of results to retrieve (default 1) |
| - Country Code | Country code for proxy selection (e.g., FR, US, UK). Defaults to "FR" if not specified |
| Advanced Options | Additional request options: |
| - Timeout | Request timeout in milliseconds (default 30000 ms) |
| - Retry Count | Number of retries on failure (default 3) |
Output
The node outputs JSON data containing the response from the Linkup API for network recommendations. The output structure includes:
- The main API response fields with recommended profiles and related metadata.
- A
_debugobject containing:requestBody: The exact request payload sent to the API.requestHeaders: HTTP headers used in the request.endpoint: The API endpoint called.apiResponse: Raw response from the API.
- A
_metaobject with:resource: The resource name ("network").operation: The operation name ("getNetworkRecommendations").timestamp: ISO timestamp of execution.nodeVersion: Version of the node implementation.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Linkup API.
- The node makes HTTP POST requests to the Linkup API endpoint
/network/recommendations. - The user must configure the API key credential in n8n credentials settings.
- Optional country code parameter influences proxy selection for requests.
Troubleshooting
- Missing API Key Error: If the API key credential is not configured or invalid, the node will throw an error indicating the missing API key. Ensure the API key is set up correctly in n8n credentials.
- Timeouts or Network Errors: Requests may fail due to network issues or slow responses. Adjust the "Timeout" advanced option to a higher value if needed.
- Invalid Parameter Values: Providing incorrect values for parameters like country code or invitation type may result in API errors. Verify parameter correctness.
- API Rate Limits: Excessive requests may be throttled by the Linkup API. Use the "Retry Count" option to handle transient failures gracefully.
Links and References
- Linkup API Documentation — Official site to create an account and obtain API keys.
- LinkedIn Networking Best Practices — Guidance on effective LinkedIn networking.
This summary covers the static analysis of the node's execute method and its configuration for the "Network" resource and "Get Network Recommendations" operation.