withdraw_connection_request
Remove a pending LinkedIn connection request to a specific person, optionally unfollowing them. Use this tool via Linked API MCP to manage your LinkedIn network efficiently.
Instructions
Allows you to withdraw the connection request sent to a person (st.withdrawConnectionRequest action).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personUrl | Yes | Public or hashed LinkedIn URL of the person you want to withdraw the connection request from. (e.g., 'https://www.linkedin.com/in/john-doe') | |
unfollow | No | Optional. Boolean indicating whether you want to unfollow the person when withdrawing the request. The default value is true. |
Input Schema (JSON Schema)
{
"properties": {
"personUrl": {
"description": "Public or hashed LinkedIn URL of the person you want to withdraw the connection request from. (e.g., 'https://www.linkedin.com/in/john-doe')",
"type": "string"
},
"unfollow": {
"description": "Optional. Boolean indicating whether you want to unfollow the person when withdrawing the request. The default value is true.",
"type": "boolean"
}
},
"required": [
"personUrl"
],
"type": "object"
}