> ## 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.

# Linkedin People Id From Sales Navigator Id

> Retrieve a LinkedIn Profile Id from an Id in the Sales Navigator format

The Linkedin People Id From Sales Navigator Id action is here to bridge between the Sales Navigator actions where specific Sales Navigator Ids are used and LinkedIn actions that require Ids in the standard LinkedIn format.

### Inputs

<ParamField path="sales_navigator_profile_id" type="string" required={true} primary={true}>
  The Sales Navigator Id of a profile. Can be the url or directly the id (usually starts with "ACo" or "ACW").
</ParamField>

### Output Fields

The action returns a comprehensive set of data fields extracted from the website:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="extracted_at" type="string">
      Date of the id extraction
    </ResponseField>

    <ResponseField name="linkedin_profile_id" type="string">
      The standard LinkedIn Id
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "extracted_at": "string",
      "linkedin_profile_id": "string"
  }
  ```
</Accordion>
