List of Invited Profiles
This endpoint allows you to retrieve a list of LinkedIn profiles you have sent connection invitations to.
GET/api/v1/invitations/sent
curl https://api.salesflow.io/public/v1/invitations/sent \
--header 'X-AccountId: 1234567890' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
Note:
The X-AccountId
header is required.
You get this ID after adding a LinkedIn account through the iFrame onboarding flow.
Query Parameters
Parameter |
Type |
Description |
---|---|---|
|
int32 |
Offset for pagination. |
Response :
{
"profiles": [
{
"linkedInMemberId": "abc123",
"profileId": "profile-xyz-789",
"publicIdentifier": "john-smith",
"firstName": "John",
"lastName": "Smith",
"invitationId": "inv-987",
"profilePictureUrl": "https://linkedin.com/profile-pic.jpg",
"profilePictureUrlLarge": "https://linkedin.com/profile-pic-large.jpg"
}
]
}
Use Cases
-
Track Pending Invitations
-
Identify users who have not yet accepted your LinkedIn connection request.
-
-
Invitation Analytics
-
Compare the number of invitations sent vs accepted to calculate connection rate.
-
-
Automated Withdrawal
-
Use this list along with the
invitationId
to selectively withdraw old or ignored invitations usingDELETE/api/v1/invitations/{id}
.
-
-
Avoid Duplicate Invites
-
Prevent your application from sending a second invitation to the same person.
-