> ## 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 Conversion Events

> Lists conversion event settings configured in the connected OpenAI Ads account (from the pixel / Conversions API)

Lists conversion event settings configured in the connected OpenAI Ads account (from the pixel / Conversions API). Use the returned ids as conversion\_event\_setting\_ids in openai\_ads\_create\_campaign when the objective (bidding\_type) is 'conversions'.

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

## Inputs

| Field   | Type                       | Required | Default | Description                                                                      |
| ------- | -------------------------- | -------- | ------- | -------------------------------------------------------------------------------- |
| `order` | string or SelectableOption | No       | -       | Sort direction by creation order: 'asc' (oldest first) or 'desc' (newest first). |
| `limit` | integer                    | No       | `100`   | Maximum number of conversion event settings to return (1-1000).                  |

### SelectableOption

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

## Output

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

Returns conversion event settings as returned by the API, including id, name, event\_type, attribution\_window\_days, custom\_event\_name, archived, sources, and source\_ids.

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

**Example**:

```json theme={"dark"}
[
  {
    "id": "6a2fa348...",
    "name": "Page Viewed",
    "event_type": "page_viewed",
    "attribution_window_days": 30,
    "sources": [
      {
        "id": "cds_...",
        "name": "My first pixel"
      }
    ]
  }
]
```
