mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
feat(Google Ads Node): Update to support v13 (#6212)
This commit is contained in:
parent
a09552d644
commit
bd1bffcd53
|
@ -41,7 +41,7 @@ export const campaignOperations: INodeProperties[] = [
|
|||
routing: {
|
||||
request: {
|
||||
method: 'POST',
|
||||
url: '={{"/v11/customers/" + $parameter["clientCustomerId"].toString().replace(/-/g, "") + "/googleAds:search"}}',
|
||||
url: '={{"/v13/customers/" + $parameter["clientCustomerId"].toString().replace(/-/g, "") + "/googleAds:search"}}',
|
||||
body: {
|
||||
query:
|
||||
'={{ "' +
|
||||
|
@ -89,7 +89,7 @@ export const campaignOperations: INodeProperties[] = [
|
|||
routing: {
|
||||
request: {
|
||||
method: 'POST',
|
||||
url: '={{"/v11/customers/" + $parameter["clientCustomerId"].toString().replace(/-/g, "") + "/googleAds:search"}}',
|
||||
url: '={{"/v13/customers/" + $parameter["clientCustomerId"].toString().replace(/-/g, "") + "/googleAds:search"}}',
|
||||
returnFullResponse: true,
|
||||
body: {
|
||||
query:
|
||||
|
|
|
@ -23,7 +23,7 @@ export class GoogleAds implements INodeType {
|
|||
testedBy: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
url: '/v11/customers:listAccessibleCustomers',
|
||||
url: '/v13/customers:listAccessibleCustomers',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue