> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Sales Navigator Company Employees

> Extract employees from a specific company on Sales Navigator.

This action allows you to extract a list of employees from a specified company using LinkedIn's Sales Navigator. It is particularly useful for recruiters, sales professionals, and researchers who need detailed employee information from a company.

### Inputs

<ParamField path="sales_navigator_company_url" type="string" required={true} primary={true}>
  A Sales Navigator Company URL should start with
  '[https://www.linkedin.com/sales/company/](https://www.linkedin.com/sales/company/)'.
</ParamField>

### Parameters

<ParamField path="employeesSearchKeywords" type="string">
  Add keywords to the employees search.
</ParamField>

<ParamField path="employeesTitle" type="string">
  Add a title to the employees search.
</ParamField>

<ParamField path="geo" type="string">
  Filter employees by geography using Sales Navigator/LinkedIn numbers. For
  example, 'Paris, Ile-de-France' is 101240143.
</ParamField>

<ParamField path="seniority" type="string">
  Filter employees by seniority level using Sales Navigator numbers. For
  example, 'Entry Level' is 110.
</ParamField>

<ParamField path="function" type="string">
  Filter employees by function using Sales Navigator numbers. For example,
  'Sales' is 25.
</ParamField>

<ParamField path="max_results" type="number" default={250} maximum={2500} minimum={1}>
  Maximum number of results to extract.
</ParamField>

<ParamField path="excludeSavedLeads" type="boolean" default={false}>
  Exclude saved leads from search.
</ParamField>

<ParamField path="excludeCRMContacts" type="boolean" default={false}>
  Exclude CRM contacts from search.
</ParamField>

<ParamField path="excludeViewedLeads" type="boolean" default={false}>
  Exclude viewed leads from search.
</ParamField>

### Output Fields

The action returns a comprehensive set of fields for each employee:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="company_name" type="string">
      The name of the company
    </ResponseField>

    <ResponseField name="connection_degree" type="string">
      The connection degree with the employee
    </ResponseField>

    <ResponseField name="first_name" type="string">
      The first name of the employee
    </ResponseField>

    <ResponseField name="full_name" type="string">
      The full name of the employee
    </ResponseField>

    <ResponseField name="headline" type="string">
      The headline of the employee
    </ResponseField>

    <ResponseField name="job_title" type="string">
      The job title of the employee
    </ResponseField>

    <ResponseField name="last_name" type="string">
      The last name of the employee
    </ResponseField>

    <ResponseField name="linkedin_people_post_search_url" type="string">
      The LinkedIn people post search URL
    </ResponseField>

    <ResponseField name="linkedin_profile_id" type="string">
      The LinkedIn profile ID
    </ResponseField>

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL
    </ResponseField>

    <ResponseField name="location" type="string">
      The location of the employee
    </ResponseField>

    <ResponseField name="position_started_at" type="string">
      The start date of the current position
    </ResponseField>

    <ResponseField name="profile_image_url" type="string">
      The profile image URL
    </ResponseField>

    <ResponseField name="sales_navigator_company_id" type="string">
      The Sales Navigator company ID
    </ResponseField>

    <ResponseField name="sales_navigator_company_url" type="string">
      The Sales Navigator company URL
    </ResponseField>

    <ResponseField name="sales_navigator_profile_id" type="string">
      The Sales Navigator profile ID
    </ResponseField>

    <ResponseField name="sales_navigator_profile_url" type="string">
      The Sales Navigator profile URL
    </ResponseField>

    <ResponseField name="sales_navigator_search_url" type="string">
      The Sales Navigator search URL
    </ResponseField>

    <ResponseField name="tenure_end" type="string">
      The end date of the tenure
    </ResponseField>

    <ResponseField name="tenure_length" type="string">
      The length of the tenure
    </ResponseField>

    <ResponseField name="tenure_start" type="string">
      The start date of the tenure
    </ResponseField>

    <ResponseField name="viewed" type="boolean">
      Indicates if the profile has been viewed
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "company_name": "string",
      "connection_degree": "string",
      "first_name": "string",
      "full_name": "string",
      "headline": "string",
      "job_title": "string",
      "last_name": "string",
      "linkedin_people_post_search_url": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string",
      "location": "string",
      "position_started_at": "string",
      "profile_image_url": "string",
      "sales_navigator_company_id": "string",
      "sales_navigator_company_url": "string",
      "sales_navigator_profile_id": "string",
      "sales_navigator_profile_url": "string",
      "sales_navigator_search_url": "string",
      "tenure_end": "string",
      "tenure_length": "string",
      "tenure_start": "string",
      "viewed": "boolean"
  }
  ```
</Accordion>

### Specificities

<Warning>
  When using the Account Rotation feature, ensure the same account is used for
  both search and visit actions to prevent duplicate leads.
</Warning>
