Skip to main content

Search

Searching for people

To search for people in LinkedIn, you need to include searchPeople action in your workflow. Here's an example:

Workflow:


{
  "actionType": "searchPeople",
  "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"]
  }
}

Completion:


{
  "actionType": "searchPeople",
  "success": true,
  "data": [
    {
      "name": "John Doe",
      "hashedUrl": "https://www.linkedin.com/in/SInQBmjJ015eLr8OeJoj0mrkxx7Jiuy0",
      "position": "Founder & CEO",
      "location": "London"
    },
    {
      "name": "John Doe",
      "hashedUrl": "https://www.linkedin.com/in/ACoAA2DdsSV83B48UDvgO5jPoу3Gho0o",
      "position": "Product Manager",
      "location": "New York"
    }
  ]
}
💡
If you want to perform actions on people from search results, use doForPeople action.

This page provides examples of workflows and their completions. For detailed documentation on constraints, parameters, and possible results of specific actions, always refer to the corresponding action documentation pages.