> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Posts

> List a Company Page's posts (most recently modified first) so they can be sponsored as ads via linkedin_ads_create_ad_from_post

List a Company Page's posts (most recently modified first) so they can be sponsored as ads via linkedin\_ads\_create\_ad\_from\_post. Requires admin access to the page.

|                      |                           |
| -------------------- | ------------------------- |
| **App**              | LinkedIn Ads              |
| **Operation ID**     | `linkedin_ads_list_posts` |
| **Type**             | Action                    |
| **Connection**       | `linkedin_ads` (required) |
| **Credits per run**  | 1                         |
| **Agent / MCP tool** | Yes                       |

## Inputs

| Field          | Type                 | Required | Default | Description                                                                                                                    |
| -------------- | -------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `organization` | string or SelectItem | Yes      | -       | The Company Page whose posts to list. Accepts an organization id or urn:li:organization:123. You must be an admin of the page. |
| `limit`        | integer              | No       | `25`    | Maximum number of posts to return (most recently modified first). The node paginates LinkedIn internally to reach this many.   |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

## Output

**Type**: `List[Dict]`

Returns LinkedIn's raw post objects, unmodified. Use a post's id (urn) with linkedin\_ads\_create\_ad\_from\_post.

**Fields**: `id`, `author`, `commentary`, `content`, `lifecycleState`, `visibility`, `createdAt`, `lastModifiedAt`
