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

> Extract information from LinkedIn polls such as the total number of votes, the post content, and more.

This action is designed to retrieve detailed information from LinkedIn polls. It is particularly useful for analyzing engagement and understanding audience preferences based on poll responses.

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

  <Step title="Step 2">
    Paste the URL into the input field on the platform.
  </Step>

  <Step title="Step 3">Launch your workflow to extract poll information.</Step>
</Steps>

<Info>
  Ensure your CSV file header matches the input key, <em>linkedin\_post\_url</em>,
  if uploading in bulk.
</Info>

### Inputs

<ParamField path="linkedin_post_url" type="string" required={true} primary={true}>
  The URL of the LinkedIn post containing the poll.
</ParamField>

### Parameters

<ParamField path="parameters" type="object">
  Currently, there are no additional parameters required for this action.
</ParamField>

### Output Fields

The extracted information includes various details about the poll and the LinkedIn post. Below is a detailed list of the output fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="first_name" type="string">
      The first name of the LinkedIn user who created the poll.
    </ResponseField>

    <ResponseField name="full_name" type="string">
      The full name of the LinkedIn user who created the poll.
    </ResponseField>

    <ResponseField name="job_title" type="string">
      The job title of the LinkedIn user who created the poll.
    </ResponseField>

    <ResponseField name="last_name" type="string">
      The last name of the LinkedIn user who created the poll.
    </ResponseField>

    <ResponseField name="linkedin_post_url" type="string">
      The URL of the LinkedIn post containing the poll.
    </ResponseField>

    <ResponseField name="linkedin_profile_handle" type="string">
      The LinkedIn profile handle of the user who created the poll.
    </ResponseField>

    <ResponseField name="linkedin_profile_url" type="string">
      The LinkedIn profile URL of the user who created the poll.
    </ResponseField>

    <ResponseField name="number_votes" type="integer">
      The total number of votes in the poll.
    </ResponseField>

    <ResponseField name="poll_options" type="array">
      The options available in the poll.
    </ResponseField>

    <ResponseField name="poll_post_content" type="string">
      The content of the LinkedIn post containing the poll.
    </ResponseField>

    <ResponseField name="poll_results" type="array">
      The results of the poll, including votes for each option.
    </ResponseField>

    <ResponseField name="poll_title" type="string">
      The title of the poll.
    </ResponseField>

    <ResponseField name="voted" type="boolean">
      Indicates whether the user has voted in the poll.
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "first_name": "string",
    "full_name": "string",
    "job_title": "string",
    "last_name": "string",
    "linkedin_post_url": "string",
    "linkedin_profile_handle": "string",
    "linkedin_profile_url": "string",
    "number_votes": "integer",
    "poll_options": "array",
    "poll_post_content": "string",
    "poll_results": "array",
    "poll_title": "string",
    "voted": "boolean"
  }
  ```
</Accordion>
