st.ignoreConnectionRequest

This action allows you to ignore an incoming connection request from a person.

Constraints

⏺️ Root Start: allowed, when personUrl parameter is provided.

⬆️ Parent Actions: st.openPersonPage.

⬇️ Child Actions: N/A.

Parameters

json
{
  "actionType": "st.ignoreConnectionRequest",
  "label": "person1",
  "personUrl": "https://www.linkedin.com/in/person1"
}
  • label (optional) – custom label for tracking this action in workflow completion.
  • personUrl (required for root start, forbidden for parent start) – public or hashed LinkedIn URL of the person whose connection request you want to ignore.

Result options

  1. Successful connection request ignoring:
json
{
  "actionType": "st.ignoreConnectionRequest",
  "label": "person1",
  "success": true
}
  • label – included only if specified in the action parameters.
  1. Failed connection request ignoring:
json
{
  "actionType": "st.ignoreConnectionRequest",
  "label": "person1",
  "success": false,
  "error": {
    "type": "noPendingRequest",
    "message": "There is no incoming connection request from this person."
  }
}
  • label – included only if specified in the action parameters.
  • error.type – enum with the following possible values:
    • personNotFound – provided URL is not an existing LinkedIn person.
    • selfProfileNotAllowed – action cannot be performed on your own profile.
    • alreadyConnected – your LinkedIn account is already connected with this person.
    • noPendingRequest – there is no incoming connection request from this person.