Connect LinkedIn Profile

LinkedIn Auto Connect streamlines the process of sending out connection requests to multiple qualified leads and boosts your network.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/linkedin-connect-profile/run/live

Parameters

Input Parameters

Configuration Parameters

Integration Parameters

Guide

What Connect LinkedIn Profile does

Connect LinkedIn Profile sends a LinkedIn connection request to a target profile programmatically, with or without a personalized note. It runs on the LinkedIn level against the account you connect to Edges, so every invitation is issued from your authenticated session and counts against your own account's activity.

Use it to turn connection sending into a triggered step inside a larger outreach workflow rather than a manual click-through in the LinkedIn UI.

How it works

You provide the target profile URL (or LinkedIn member ID) and an optional note; Edges signs the request with your connected LinkedIn session and submits the invite through LinkedIn infrastructure. The action is synchronous, returns quickly, and surfaces typed errors when LinkedIn refuses — for example, when the profile is out of network without a valid email, already connected, or temporarily unreachable.

Edges paces server-side to stay within LinkedIn's invitation guardrails, which matters if you are chaining Connect LinkedIn Profile across hundreds of records in a campaign.

When to use Connect LinkedIn Profile

Use Connect LinkedIn Profile when growing your network is an automation step, not a daily chore. Typical patterns: connect to new leads pulled from a Sales Navigator search, connect to people who liked a competitor's post, connect to attendees of a LinkedIn event, connect to everyone in a CRM segment.

It is the backbone of the LinkedIn messaging & outreach API workflow — connect first, then message warm first-degree contacts.

Use cases

  • Outbound sales. Connect LinkedIn Profile fires against an ICP-scored list so every new qualified lead gets an invite with a short, personalized note.
  • Account-based marketing. Invite decision-makers at target accounts identified via Search LinkedIn Company Employees.
  • Content distribution. Invite people who engaged with a post (likers, commenters) to compound your audience into warm first-degree reach.
  • Event follow-up. After a LinkedIn event, invite registered attendees who are not yet connected.
  • Recruiting. Connect to candidates surfaced by a Recruiter or Sales Navigator search before transitioning to direct messaging.

Best practices

  • Respect LinkedIn's invitation limits. Invitations per week are capped by LinkedIn; keep the cadence realistic and let Edges pace rather than overriding with retries.
  • Personalize the note selectively. Notes consume a limited monthly quota on free accounts. Use them where personalization matters (ICP-fit leads) and send noteless invites for broad passive audiences.
  • Pre-check the connection degree. Chain Extract LinkedIn Profile first to avoid re-inviting first-degree contacts or wasting notes on out-of-network profiles.
  • Pair with an accept-side workflow. When the target accepts, chain Message LinkedIn Profile to follow up within a short window.

Common questions

How many profiles can I connect per run?

One per call. For batch campaigns, fan out Connect LinkedIn Profile across your list with spacing between calls — Edges handles server-side pacing but respects LinkedIn's per-account weekly invitation ceiling.

Does Connect LinkedIn Profile use my LinkedIn account or a shared pool?

Your LinkedIn account. Edges executes every invitation through the LinkedIn session you connected, so invitations appear in your own Sent Invitations list and count against your account's quota.

Can I chain Connect LinkedIn Profile with other Edges actions?

Yes. Common patterns include Search LinkedIn People to build the target list, Extract LinkedIn Profile to enrich and filter, Connect LinkedIn Profile to send the invite, and Message LinkedIn Profile once the invite is accepted.

Get started

Run Connect LinkedIn Profile from the Edges library, wire it into your CRM or workflow engine, or call it directly from the Edges API. Browse the full Actions library to compose it with search, extract, and messaging actions into a complete connection workflow.

Code Examples

bash
curl -X POST "https://api.edges.run/v1/actions/linkedin-connect-profile/run/live" \
  -H "X-API-KEY: <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "identity_ids": [
    "your-identity-uuid"
  ],
  "identity_mode": "direct",
  "input": {
    "custom_data": "example_value",
    "linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
    "sales_navigator_profile_id": "example_value"
  },
  "parameters": {
    "message": "Hello! I would like to connect with you."
  }
}'

Output Example

{
  "message": "example_value",
  "sales_navigator_profile_id": "example-123",
  "connected": true,
  "pending": true,
  "connection_sent_date": "1990-01-01",
  "linkedin_profile_id": 42
}

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.