Get conversion goals
GET/ad-publishing/google/conversion-goals
Retrieve Google Ads conversion goals for a location. Without limit the response is a plain array. When limit is provided (max 100, default 100) the response is a paginated { conversionGoals, paging } envelope; pass pageToken (from paging.next) to fetch the next batch.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location identifier
limit string
Page size for a paginated fetch (max 100, defaults to 100). When set, the response is a { conversionGoals, paging } envelope instead of a plain array.
pageToken string
Opaque cursor for the next batch, taken from the previous response paging.next
A plain array of conversion goals (default), or a { conversionGoals, paging } envelope when limit is provided
- application/json
- Schema
- Example (auto)
Schema
- oneOf
- object[]
- PaginatedGoogleConversionGoalsDTO
- Array [
- ]
property name*any
[
{
"category": "PURCHASE",
"isCustomConversionGoal": false,
"verificationStatus": "VERIFIED",
"issueCount": 0
},
{
"category": "SUBMIT_LEAD_FORM",
"isCustomConversionGoal": false,
"verificationStatus": "UNVERIFIED",
"issueCount": 2
},
{
"category": "Demo booked",
"isCustomConversionGoal": true,
"verificationStatus": "PENDING",
"issueCount": 0
}
]