OpenAI Ads Conversions

OpenAI Ads Conversions

Send conversion events to the OpenAI Ads Conversions API to measure ads shown in ChatGPT

Configuration

OptionDescription
Pixel ID
Type: string
Required: True

The ID of the OpenAI pixel that conversions are sent to. Find it in the conversions tab in OpenAI Ads Manager.

Conversions API key
Type: string
Required: True

The Conversions API key for your pixel, from the conversions tab in OpenAI Ads Manager.

Using our REST API you can create this destination like so:

Terminal
# Create a new destination
curl --location 'https://us.i.posthog.com/api/environments/:project_id/hog_functions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <POSTHOG_PERSONAL_API_KEY>' \
--data '{
"type": "destination",
"name": "OpenAI Ads Conversions",
"inputs": {
"pixelId": {
"value": ""
},
"apiKey": {
"value": ""
}
},
"enabled": true,
"template_id": "template-openai-ads"
}'

Community questions