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

# Invite People to a LinkedIn Event

> Invite LinkedIn contacts to your LinkedIn event.

This action allows you to invite your LinkedIn connections to an event. You must be an event admin or an attendee to send invitations, and you can only invite your first-degree connections.

<Info>
  Ensure you have the necessary permissions to invite contacts to the event.
</Info>

### Inputs

<ParamField path="linkedin_profile_url" type="string" required={true} placeholder="LinkedIn People Profile URL">
  A LinkedIn Profile URL should start with
  '[https://www.linkedin.com/sales/people/](https://www.linkedin.com/sales/people/)',
  '[https://www.linkedin.com/sales/lead/](https://www.linkedin.com/sales/lead/)', '[https://www.linkedin.com/pub/](https://www.linkedin.com/pub/)' or
  '[https://www.linkedin.com/in/](https://www.linkedin.com/in/)'.
</ParamField>

<ParamField path="linkedin_event_url" type="string" required={true} placeholder="LinkedIn Event URL">
  A LinkedIn Event URL should start with '[https://www.linkedin.com/video/event](https://www.linkedin.com/video/event)'
  or '[https://www.linkedin.com/events](https://www.linkedin.com/events)'.
</ParamField>

### Parameters

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

### Output Fields

The following fields are returned upon successful execution of the action:

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

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

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

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

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

    <ResponseField name="linkedin_event_url" type="string">
      The URL of the LinkedIn event
    </ResponseField>

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

    <ResponseField name="linkedin_profile_handle" type="string">
      The LinkedIn profile handle
    </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="pending" type="boolean">
      Indicates if the invitation is pending
    </ResponseField>

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

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "company_name": "string",
      "first_name": "string",
      "full_name": "string",
      "job_title": "string",
      "last_name": "string",
      "linkedin_event_url": "string",
      "linkedin_people_post_search_url": "string",
      "linkedin_profile_handle": "string",
      "linkedin_profile_id": "string",
      "linkedin_profile_url": "string",
      "pending": "boolean",
      "sales_navigator_profile_id": "string"
  }
  ```
</Accordion>

<Note>Ensure all input URLs are correctly formatted to avoid errors.</Note>
