st.ignoreInvitation
This action ignores an incoming invitation from the LinkedIn invitation manager. It supports connection requests, company-follow invitations, and newsletter-subscription invitations.
Constraints
⏺️ Root Start: allowed when
invitationTypeand its matching target URL are provided.
⬆️ Parent Actions: N/A.
⬇️ Child Actions: N/A.
Parameters
json
{
"actionType": "st.ignoreInvitation",
"label": "invitation1",
"invitationType": "connect",
"personUrl": "https://www.linkedin.com/in/person1"
}label(optional) – custom label for tracking this action in workflow completion.invitationType(required) – one of:connect– requirespersonUrl.companyFollow– requirescompanyUrl.newsletterSubscribe– requiresnewsletterUrl.
personUrl– public or hashed LinkedIn person URL. Allowed only forconnect.companyUrl– LinkedIn company page URL. Allowed only forcompanyFollow.newsletterUrl– LinkedIn newsletter URL. Allowed only fornewsletterSubscribe.
Provide exactly one target URL: the one required by invitationType.
Result options
- Successful invitation dismissal:
json
{
"actionType": "st.ignoreInvitation",
"label": "invitation1",
"success": true
}label– included only if specified in the action parameters.
- No matching invitation:
json
{
"actionType": "st.ignoreInvitation",
"label": "invitation1",
"success": false,
"error": {
"type": "noPendingRequest",
"message": "There is no matching pending incoming invitation to ignore."
}
}error.typeisnoPendingRequestwhen no invitation matches the supplied type and target URL.