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

# Connect Sales Navigator Profile

> Sends a connection request when visiting a Sales Navigator People profile.

Grow your network with Sales Navigator! This action sends connection requests to targeted profiles. Provide a Sales Navigator profile URL, and the action will start sending out connection requests, along with a message if provided, to all the respective profiles.

**Use Cases:**

* Create relationships with leads
* Nurture leads with follow-ups
* Gain visibility

<Steps>
  <Step title="Navigate to Profile">
    Navigate to a Sales Navigator profile like this one
    [https://www.linkedin.com/sales/people/ACwAABCtPWcBPhifa7qOAXJvLHQ56dTmCdC8ov8](https://www.linkedin.com/sales/people/ACwAABCtPWcBPhifa7qOAXJvLHQ56dTmCdC8ov8)
  </Step>

  <Step title="Copy URL">Copy the URL from your browser.</Step>
  <Step title="Paste URL">Paste it into the provided field(s).</Step>
</Steps>

### Inputs

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

### Parameters

<ParamField path="message" type="string" maxLength={300} format="textarea" default="Hello {{first_name}}, \n\nI'm a huge fan of XXX.\nWould you be willing to share your best techniques regarding XXX?\n\nHave a nice day,\nJohn">
  Your custom message, maximum length is 300 (to take into account when using
  liquid).
</ParamField>

### Output Fields

The following fields are returned as part of the response:

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

    <ResponseField name="connected" type="boolean">
      Indicates if the connection request was accepted
    </ResponseField>

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

    <ResponseField name="description" type="string">
      The description of the profile
    </ResponseField>

    <ResponseField name="email" type="string">
      The email address associated with the profile
    </ResponseField>

    <ResponseField name="experiences" type="array">
      A list of experiences associated with the profile
    </ResponseField>

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

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

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

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

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

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

    <ResponseField name="message" type="string">
      The message sent with the connection request
    </ResponseField>

    <ResponseField name="pending" type="boolean">
      Indicates if the connection request is pending
    </ResponseField>

    <ResponseField name="phone" type="string">
      The phone number associated with the profile
    </ResponseField>

    <ResponseField name="profile_id" type="string">
      The unique identifier of the profile
    </ResponseField>

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

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

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

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

    <ResponseField name="twitter_profile_url" type="string">
      The Twitter profile URL
    </ResponseField>

    <ResponseField name="website" type="string">
      The website associated with the profile
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "company_name": "string",
    "connected": "boolean",
    "connection_degree": "string",
    "description": "string",
    "email": "string",
    "experiences": "array",
    "first_name": "string",
    "full_name": "string",
    "headline": "string",
    "job_title": "string",
    "last_name": "string",
    "location": "string",
    "message": "string",
    "pending": "boolean",
    "phone": "string",
    "profile_id": "string",
    "profile_image_url": "string",
    "sales_navigator_company_url": "string",
    "sales_navigator_profile_id": "string",
    "sales_navigator_profile_url": "string",
    "twitter_profile_url": "string",
    "website": "string"
  }
  ```
</Accordion>
