Skip to main content

Actions

searchPeople

This action allows you to search for people applying various filtering criteria.

Constraints

⏺️
Root Start: allowed.
⬆️
Parent Actions: N/A.
⬇️
Child Actions: doForPeople.

Paramenters


{
  "actionType": "searchPeople",
  "label": "johnDoeSearch1",
  "term": "John Doe",
  "limit": 2,
  "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"],
    "yearsOfExperience": ["0-1", "1-2", "3-5"]
  },
  "then": { ... }
}
  • label (optional) – custom label for tracking this action in workflow completion.
  • term (optional) – keyword or phrase to search.
  • limit (optional) – number of search results to return. Defaults to 10, with a maximum value of 10.
  • filter (optional) – object that specifies filtering criteria for people. When multiple filter fields are specified, they are combined using AND 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.
    • yearsOfExperience (optional) – array of enums representing professional experience. Matches if person’s experience falls within any of the listed ranges. Options:
      • 0-1.
      • 1-2.
      • 3-5.
      • 6-10.
      • 10+.
  • then (optional) – object or array of child actions to be executed within this action.

Result options

This action always completes successfully.


{
  "actionType": "searchPeople",
  "label": "johnDoeSearch1",
  "success": true,
  "data": [
    {
      "name": "John Doe",
      "hashedUrl": "https://www.linkedin.com/in/SInQBmjJ015eLr8OeJoj0mrkxx7Jiuy0",
      "position": "Founder & CEO",
      "location": "London",
      "then": { ... }
    },
    {
      "name": "John Doe",
      "hashedUrl": "https://www.linkedin.com/in/ACoAA2DdsSV83B48UDvgO5jPoу3Gho0o",
      "position": "Product Manager",
      "location": "New York",
      "then": { ... }
    }
  ]
}
  • label – included only if specified in the action parameters.
  • data – array of search outputs with results of child actions execution.
    • name – full name of the person.
    • hashedUrl – hashed LinkedIn URL of the person.
    • position – job position of the person.
    • location – free-form string indicating the person's location.
    • then – results of child actions execution.