curl --request GET \
--url http://localhost:8000/api/v1/campaigns/conversion-actions \
--header 'Authorization: Bearer <token>'{
"conversion_actions": [
{
"id": 123,
"name": "<string>",
"category": "PURCHASE",
"status": "ENABLED",
"primary_for_goal": true
}
]
}Get conversion actions available for the specified Google Ads account.
These can be used when configuring conversion goals for campaign creation.
curl --request GET \
--url http://localhost:8000/api/v1/campaigns/conversion-actions \
--header 'Authorization: Bearer <token>'{
"conversion_actions": [
{
"id": 123,
"name": "<string>",
"category": "PURCHASE",
"status": "ENABLED",
"primary_for_goal": true
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
Google Ads customer ID
Optional specific Token ID
Successful Response
Response for conversion actions.
Show child attributes