/v1/actions/linkedin-peopleid-from-salesnavigatorid/run/livePeopleid From Salesnavigatorid converts a Sales Navigator person identifier into the standard LinkedIn people ID so your enrichment pipelines stay unified across both surfaces. You get a single canonical ID that downstream actions, CRM syncs, and dedupe logic can rely on. It targets engineering teams stitching Sales Navigator lists into LinkedIn-first data models.
The action runs on the LinkedIn level and resolves the mapping through your authenticated LinkedIn session on Edges.
You pass in a Sales Navigator person identifier (the opaque ID from a Sales Navigator profile URL or lead list export). Edges issues a lookup against LinkedIn using your connected session, resolves the corresponding LinkedIn people ID, and returns it in a typed response. The operation is synchronous and lightweight — a single round-trip per ID.
Edges handles authentication, rate guidance, and pacing so your pipeline does not need to throttle client-side. If the Sales Navigator ID is invalid, revoked, or points to a profile you cannot access from your session, the action returns a typed error your workflow can branch on.
Reach for this action whenever your pipeline mixes Sales Navigator extracts with LinkedIn-native data. CRMs, warehouses, and enrichment stacks almost always key on the LinkedIn people ID, not the Sales Navigator variant — so resolving the mapping up front saves you from maintaining two identifier spaces.
It is a core identifier primitive for the LinkedIn profile and company data API use case. Run it as a step between a Sales Navigator search and any LinkedIn extraction so the rest of your graph speaks one ID.
people_id column into your warehouse regardless of which LinkedIn surface discovered the lead.One per call. The action is a focused identifier primitive — parallelize at the pipeline level when you need throughput, and let Edges pace the requests for you.
Your LinkedIn account. Every mapping request is signed with the session of the LinkedIn account you connect to Edges, so resolution visibility matches what you would see manually.
Yes. Most teams run it right after a Sales Navigator search and feed the resolved peopleId directly into Extract Linkedin User Contact Info or Visit LinkedIn Profile.
Add Peopleid From Salesnavigatorid to a workflow whenever your pipeline crosses the Sales Navigator / LinkedIn boundary. Wire it into Zapier, Make, n8n, or call it directly from the Edges API, and browse the full Actions library to pick the enrichment steps that follow.
curl -X POST "https://api.edges.run/v1/actions/linkedin-peopleid-from-salesnavigatorid/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"sales_navigator_profile_id": "example_value",
"custom_data": "example_value"
}
}'{
"linkedin_profile_id": 42
}