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

# Create Ad From Creative

> Creates a new Meta ad from an existing ad creative ID

Creates a new Meta ad from an existing ad creative ID. Useful when you want to reuse or duplicate an existing creative into a new ad or ad set, or when you already created a creative with meta\_ads\_create\_ad\_creative. This operation does not upload media or build a new creative payload. If you need to create an ad from new media, use the relevant ad creation operation such as meta\_ads\_create\_single\_image\_ad or meta\_ads\_create\_single\_video\_ad, etc instead.

|                       |                                    |
| --------------------- | ---------------------------------- |
| **App**               | Meta Ads                           |
| **Operation ID**      | `meta_ads_create_ad_from_creative` |
| **Type**              | Action                             |
| **Connection**        | `meta_ads` (required)              |
| **Credits per run**   | 2                                  |
| **Agent / MCP tool**  | Yes                                |
| **Requires approval** | Yes (write operation)              |

## Inputs

| Field         | Type                       | Required | Default | Description                                                                                                                        |
| ------------- | -------------------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| `account`     | DynamicAccount             | Yes      | -       | Select the Meta Ads account, ask the user for it if not provided                                                                   |
| `adset_id`    | string or SelectItem       | Yes      | -       | Select the ad set where the new ad should be created, ask the user for it if not provided                                          |
| `ad_name`     | string                     | Yes      | -       | Name of the new ad                                                                                                                 |
| `creative_id` | string                     | Yes      | -       | Existing Meta ad creative ID to attach to the new ad. Use this when reusing or duplicating a creative that already exists in Meta. |
| `ad_status`   | string or SelectableOption | No       | -       | Select the status for the new ad. Available options: 'ACTIVE', 'PAUSED'. Defaults to 'PAUSED'.                                     |

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

### SelectableOption

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

## Output

**Type**: `Dict`

Returns the created ad ID and the creative ID attached to it.

**Fields**: `ad_id`, `creative_id`, `ad_name`, `adset_id`, `status`
