curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"identifier": "<string>",
"message": "<string>"
}
}
'{
"success": true,
"data": {
"invitation_urn": "urn:li:invitation:123456789",
"profile_urn": "urn:li:fsd_profile:ACoAABxxxxxxx",
"first_name": "John",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"public_identifier": "johndoe",
"profile_picture_url": "https://media.licdn.com/dms/image/example.jpg"
},
"metadata": {
"action": "invite",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-03-24T12:00:00Z"
}
}
Send a connection request to a user.
curl --request POST \
--url https://api.example.com/v2/network \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"identifier": "<string>",
"message": "<string>"
}
}
'{
"success": true,
"data": {
"invitation_urn": "urn:li:invitation:123456789",
"profile_urn": "urn:li:fsd_profile:ACoAABxxxxxxx",
"first_name": "John",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"public_identifier": "johndoe",
"profile_picture_url": "https://media.licdn.com/dms/image/example.jpg"
},
"metadata": {
"action": "invite",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-03-24T12:00:00Z"
}
}
"invite".Show params properties
linkedin_url as an alias. Required if identifier is not provided.profile_url is not provided.Show data properties
{
"success": true,
"data": {
"invitation_urn": "urn:li:invitation:123456789",
"profile_urn": "urn:li:fsd_profile:ACoAABxxxxxxx",
"first_name": "John",
"last_name": "Doe",
"headline": "Senior Software Engineer at Acme Corp",
"public_identifier": "johndoe",
"profile_picture_url": "https://media.licdn.com/dms/image/example.jpg"
},
"metadata": {
"action": "invite",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-03-24T12:00:00Z"
}
}
Was this page helpful?