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

# Extract LinkedIn Polls Participants

> Extract detailed information about participants who responded to your LinkedIn poll. You must be the poll owner to access this data.

This action allows you to gather comprehensive details about individuals who have participated in your LinkedIn poll. Ensure you are the poll owner to utilize this feature.

<Info>
  Only the poll creator can access participants' information, including their
  responses.
</Info>

### Inputs

<ParamField path="linkedin_post_url" type="string" required={true} primary={true}>
  Provide the URL of the LinkedIn post containing the poll you wish to extract
  data from.
</ParamField>

### Parameters

<ParamField path="parameters" type="object">
  No additional parameters are required for this action.
</ParamField>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="connection_degree" type="string">
      The degree of connection to the poll owner
    </ResponseField>

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

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

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

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

    <ResponseField name="linkedin_poll_result" type="string">
      The participant's response to the poll
    </ResponseField>

    <ResponseField name="linkedin_profile_handle" type="string">
      The LinkedIn handle of the participant
    </ResponseField>

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL of the participant
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "connection_degree": "string",
      "first_name": "string",
      "full_name": "string",
      "job_title": "string",
      "last_name": "string",
      "linkedin_poll_result": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_url": "string"
  }
  ```
</Accordion>

### Specificities

<Steps>
  <Step title="Step 1: Obtain Poll URL">
    Copy the URL of your LinkedIn poll post.
  </Step>

  <Step title="Step 2: Input URL">
    Paste the URL into the input field labeled 'linkedin\_post\_url'.
  </Step>

  <Step title="Step 3: Launch Action">
    Initiate the action to extract participant data.
  </Step>
</Steps>

<Tip>
  If uploading input via CSV, ensure the header is named 'linkedin\_post\_url'.
</Tip>
