> ## 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 Product Feed

> Create a product feed on the connected OpenAI Ads account

Create a product feed on the connected OpenAI Ads account. The catalog itself is then uploaded via SFTP or a hosted URL configured in OpenAI Ads Manager; this node only creates the feed container.

|                       |                                  |
| --------------------- | -------------------------------- |
| **App**               | OpenAI Ads                       |
| **Operation ID**      | `openai_ads_create_product_feed` |
| **Type**              | Action                           |
| **Connection**        | `openai_ads` (required)          |
| **Credits per run**   | 1                                |
| **Agent / MCP tool**  | Yes                              |
| **Requires approval** | Yes (write operation)            |

## Inputs

| Field       | Type                                          | Required | Default | Description                                                                               |
| ----------- | --------------------------------------------- | -------- | ------- | ----------------------------------------------------------------------------------------- |
| `name`      | string                                        | Yes      | -       | Product feed name (up to 255 characters).                                                 |
| `countries` | array (also accepts a comma-separated string) | No       | -       | Optional ISO country codes the feed serves (e.g. 'US'). Determines the feed's currencies. |

## Output

**Type**: `Dict`

Returns the created feed exactly as returned by the OpenAI Ads API (feed\_id, name, countries, currencies, created\_at, updated\_at).

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
{
  "feed_id": "acme_feed",
  "name": "Acme",
  "countries": [
    "US"
  ],
  "currencies": [
    "USD"
  ]
}
```
