Skip to main content
POST
/
actions
/
linkedin-peopleid-from-salesnavigatorid
/
run
/
live
Run linkedin-peopleid-from-salesnavigatorid action live
curl --request POST \
  --url https://api.edges.run/v1/actions/linkedin-peopleid-from-salesnavigatorid/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "input": {
    "sales_navigator_profile_id": "<string>",
    "custom_data": {}
  }
}
'
const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({input: {sales_navigator_profile_id: '<string>', custom_data: {}}})
};

fetch('https://api.edges.run/v1/actions/linkedin-peopleid-from-salesnavigatorid/run/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.edges.run/v1/actions/linkedin-peopleid-from-salesnavigatorid/run/live"

payload = { "input": {
"sales_navigator_profile_id": "<string>",
"custom_data": {}
} }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "linkedin_profile_id": 123
}

Authorizations

X-API-Key
string
header
required

Body

application/json
input
object
required

Response

Successful response

linkedin_profile_id
integer

A "null" value mean that the id does not exists.