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": {
"count": 123,
"offset": 123,
"invitation_type": "<string>"
}
}
'{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:987654321",
"recipient": {
"first_name": "Bob",
"last_name": "Williams",
"headline": "CTO at StartupXYZ",
"linkedin_url": "https://www.linkedin.com/in/bobwilliams",
"profile_picture": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "5d",
"sent_time_days": 5
}
],
"total_results": 1,
"total_available_results": 145,
"invitation_type": "CONNECTION",
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_sent",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Retrieve a paginated list of sent invitations.
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": {
"count": 123,
"offset": 123,
"invitation_type": "<string>"
}
}
'{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:987654321",
"recipient": {
"first_name": "Bob",
"last_name": "Williams",
"headline": "CTO at StartupXYZ",
"linkedin_url": "https://www.linkedin.com/in/bobwilliams",
"profile_picture": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "5d",
"sent_time_days": 5
}
],
"total_results": 1,
"total_available_results": 145,
"invitation_type": "CONNECTION",
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_sent",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
count for the page size and offset to skip ahead.
count values trigger multiple upstream calls automatically."list_sent".Show params properties
10. Capped at 1000 per call — to retrieve more, paginate with offset.0. Use pagination.next_offset from a previous response to fetch the next page."CONNECTION", "ORGANIZATION", "EVENT". Defaults to "CONNECTION".Show data properties
Show pagination properties
total_results).offset in the next request. null when there are no more results.true if more sent invitations are available beyond this batch.{
"success": true,
"data": {
"invitations": [
{
"entity_urn": "urn:li:invitation:987654321",
"recipient": {
"first_name": "Bob",
"last_name": "Williams",
"headline": "CTO at StartupXYZ",
"linkedin_url": "https://www.linkedin.com/in/bobwilliams",
"profile_picture": "https://media.licdn.com/dms/image/..."
},
"invitation_type": "CONNECTION",
"sent_time": "5d",
"sent_time_days": 5
}
],
"total_results": 1,
"total_available_results": 145,
"invitation_type": "CONNECTION",
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "list_sent",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?