POST
/
v1
/
network
/
withdraw-invitation
Withdraw Invitation
curl --request POST \
  --url https://api.linkupapi.com/v1/network/withdraw-invitation \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "invitation_id": "<string>",
  "login_token": "<string>",
  "country": "<string>"
}'
{
  "status": "success",
  "message": "Connection invitation withdrawn successfully"
}

Withdraw a LinkedIn connection invitation that you have previously sent to another user.

Credit cost: 1 credit per invitation withdrawal

Header Parameters

x-api-key
string
required

Your API key

Body Parameters

invitation_id
string
required

ID of the invitation to withdraw

login_token
string
required

LinkedIn authentication cookie obtained from the login/verify process

country
string
default:"FR"

Country code for proxy selection. Available: (US,UK,FR)

Response

status
string

Request status (success/error)

message
string

Descriptive message about the operation result

{
  "status": "success",
  "message": "Connection invitation withdrawn successfully"
}

Notes

  • You can only withdraw invitations that you have sent and are still pending
  • The invitation_id can be obtained from the “Get Sent Invitations” endpoint
  • Once an invitation is withdrawn, it cannot be undone
  • The operation will fail if the invitation has already been accepted or declined
  • Rate limiting applies to prevent abuse of LinkedIn’s systems