> ## 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 Target Templates

> List the saved audience templates on a LinkedIn ad account

List the saved audience templates on a LinkedIn ad account. Turn on include\_targeting to get each template's targeting criteria, which can be passed straight into linkedin\_ads\_create\_adset to reuse the audience.

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

## Inputs

| Field               | Type                             | Required | Default | Description                                                                                                                                                                    |
| ------------------- | -------------------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `account`           | DynamicAccount                   | Yes      | -       | LinkedIn Ads account whose saved audience templates should be listed.                                                                                                          |
| `include_targeting` | boolean                          | No       | `False` | If true, also return each template's full targeting criteria object. Off by default because the object is large; turn it on to reuse a saved audience when creating an ad set. |
| `sort_field`        | enum (`ID`, `NAME`)              | No       | -       | Sort by ID or NAME. Defaults to ID.                                                                                                                                            |
| `sort_order`        | enum (`ASCENDING`, `DESCENDING`) | No       | -       | Sort direction. Defaults to ASCENDING.                                                                                                                                         |
| `limit`             | integer                          | No       | `100`   | Maximum number of templates to return. Defaults to 100.                                                                                                                        |

## Output

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

Returns saved audiences. targeting\_criteria is present only when include\_targeting is on.

**Fields**: `id`, `name`, `description`, `account`, `approximate_member_count`, `targeting_criteria`
