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

> List campaigns in a LinkedIn Ads account, with optional status filter and sort order

List campaigns in a LinkedIn Ads account, with optional status filter and sort order. In LinkedIn's API these are campaign groups (adCampaignGroups); LinkedIn's newer UI naming calls them campaigns.

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

## Inputs

| Field        | Type                                | Required | Default                                          | Description                                                                                                                                                            |
| ------------ | ----------------------------------- | -------- | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `account`    | DynamicAccount                      | Yes      | -                                                | Select the LinkedIn Ads account to list campaigns from.                                                                                                                |
| `status`     | array of string or SelectableOption | No       | -                                                | Filter campaigns by status (applied client-side). Multiple can be selected. Options: ACTIVE, PAUSED, ARCHIVED, COMPLETED, CANCELED, DRAFT, PENDING\_DELETION, REMOVED. |
| `sort_order` | string or SelectableOption          | No       | `{'value': 'DESCENDING', 'label': 'Descending'}` | Sort order by campaign id: ASCENDING or DESCENDING. Default DESCENDING.                                                                                                |
| `limit`      | integer                             | No       | `100`                                            | Maximum number of campaigns to return. The node paginates LinkedIn internally to reach this many.                                                                      |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

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

Returns LinkedIn's raw campaign group (adCampaignGroups) objects, unmodified, so they can be fed into other nodes. Field set varies per campaign.

**Fields**: `id`, `name`, `status`, `account`, `objectiveType`, `totalBudget`, `runSchedule`, `servingStatuses`, `test`, `changeAuditStamps`
