st.retrieveConnectionRequests

This action allows you to retrieve incoming connection requests received by your account.

Constraints

⏺️ Root Start: allowed.

⬆️ Parent Actions: N/A.

⬇️ Child Actions: st.doForPeople.

Parameters

json
{
  "actionType": "st.retrieveConnectionRequests",
  "label": "listRequests1",
  "then": { ... }
}
  • label (optional) – custom label for tracking this action in workflow completion.
  • then (optional) – object or array of child actions to be executed within this action.

Result options

This action always completes successfully. Even if you have no incoming connection requests, it returns an empty array.

json
{
  "actionType": "st.retrieveConnectionRequests",
  "label": "listRequests1",
  "success": true,
  "data": [
    {
      "name": "John Doe",
      "publicUrl": "https://www.linkedin.com/in/johndoe",
      "headline": "Founder & CEO at Example Company",
      "then": { ... }
    },
    {
      "name": "Jane Smith",
      "publicUrl": "https://www.linkedin.com/in/janesmith",
      "headline": "CTO at Tech Solutions",
      "then": { ... }
    },
    {
      "name": "Carlos Santos",
      "publicUrl": "https://www.linkedin.com/in/carlossantos",
      "headline": "Product Manager at Startup Hub",
      "then": { ... }
    }
  ]
}
  • label – included only if specified in the action parameters.
  • data – array of incoming connection requests with results of child actions execution.
    • name – full name of the person.
    • publicUrlpublic LinkedIn URL of the person.
    • headline – headline of the person.