st.retrieveConnections
This action allows you to retrieve your connections and perform additional person-related actions if needed.
Constraints
⏺️
Root Start: allowed.
⬆️
Parent Actions: N/A.
⬇️
Child Actions: st.doForPeople.
Paramenters
{
"actionType": "st.retrieveConnections",
"label": "listConnections1",
"filter": {
"firstName": "John",
"lastName": "Doe",
"position": "CEO",
"locations": ["New York", "San Francisco", "London"],
"industries": ["Software Development", "Professional Services"],
"currentCompanies": ["Tech Solutions", "Innovatech"],
"previousCompanies": ["FutureCorp"],
"schools": ["Harvard University", "MIT"]
}
"then": { ... }
}
label
(optional) – custom label for tracking this action in workflow completion.filter
(optional) – object that specifies filtering criteria for people. When multiple filter fields are specified, they are combined usingAND
logic.firstName
(optional) – first name of person.lastName
(optional) – last name of person.position
(optional) – job position of person.locations
(optional) – array of free-form strings representing locations. Matches if person is located in any of the listed locations.industries
(optional) – array of enums representing industries. Matches if person works in any of the listed industries. Takes specific values available in the LinkedIn interface.currentCompanies
(optional) – array of company names. Matches if person currently works at any of the listed companies.previousCompanies
(optional) – array of company names. Matches if person previously worked at any of the listed companies.schools
(optional) – array of institution names. Matches if person currently attends or previously attended any of the listed institutions.
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 connections, it returns an empty array.
{
"actionType": "st.retrieveConnections",
"label": "listConnections1",
"success": true,
"data": [
{
"name": "John Doe",
"publicUrl": "https://www.linkedin.com/in/johndoe",
"headline": "Founder & CEO at Example Company",
"location": "Lisbon, Portugal",
"then": { ... }
},
{
"name": "Jane Smith",
"publicUrl": "https://www.linkedin.com/in/janesmith",
"headline": "CEO at Tech Solutions",
"location": "San Francisco Bay Area",
"then": { ... }
},
{
"name": "Carlos Santos",
"publicUrl": "https://www.linkedin.com/in/carlossantos",
"headline": "Project Manager at Startup Hub",
"location": "Madrid",
"then": { ... }
}
]
}
label
– included only if specified in the action parameters.data
– array of your connections with results of child actions execution.name
– full name of the person.publicUrl
– public LinkedIn URL of the person.headline
– headline of the person.location
– free-form string indicating the person's location.then
– results of child actions execution.