/v1/actions/linkedin-extract-sent-invitations/run/liveExtract LinkedIn Sent Invitations pulls every connection request you have sent from your LinkedIn account, returning each invitation as a structured record with recipient, status, and sent-at timestamp. It runs on the LinkedIn level and turns your outbound invitation activity into a query-able dataset instead of a static inbox view.
The action gives you the visibility you need to audit outreach, track acceptance rates, and decide which pending invitations to withdraw.
You trigger the action against your connected LinkedIn account, and Edges walks the "Sent" tab of your invitations, page by page, through your authenticated LinkedIn session. Each invitation is returned as a typed record — who you invited, whether it is still pending, and what note you attached if any.
The run executes on Edges infrastructure: browser-less, session-authenticated, and paced against LinkedIn's rate guidance. For accounts with thousands of sent invitations, the extraction runs asynchronously and returns a complete list when it finishes.
Reach for this action when you need to audit outbound — which invitations are still open, which never accepted, who never saw a follow-up. It fits the LinkedIn messaging & outreach API use case and plugs into any outbound tracking or inbox-hygiene workflow.
Extract LinkedIn Sent Invitations is typically scheduled — weekly or monthly — so your reporting system always has a fresh view of pending outbound.
The action walks the full sent list exposed to your LinkedIn session, bounded by your optional limit or since filter. Accounts with many sent invitations will run asynchronously.
Your account. The sent list is private to the sender, so the extraction must run through your authenticated LinkedIn session. Edges handles the pacing and session management.
Yes. Common chains are Extract LinkedIn Sent Invitations → filter pending > 14 days → [Withdraw Invitation](/actions/linkedin-withdraw-invitation) or Extract LinkedIn Sent Invitations → join with CRM → update outreach status. The output is a plain list of records ready for downstream automation.
Run Extract LinkedIn Sent Invitations on a schedule from the Edges dashboard, or call it via the Edges API from your outbound reporting pipeline. Browse the full Actions library to pair it with withdraw and messaging actions.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-sent-invitations/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct"
}'[
{
"linkedin_invitation_id": "example-123",
"linkedin_invitation_urn": "example_value",
"sent_date": "1990-01-01",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"job_title": "Software Engineer at Example Corp",
"full_name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"sales_navigator_profile_id": "example-123",
"linkedin_profile_id": 42
}
]