Skip to content

Commit

Permalink
feat(Google Ads Node): Update to support v13 (#6212)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom committed May 11, 2023
1 parent a09552d commit bd1bffc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nodes-base/nodes/Google/Ads/CampaignDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
'={{ "' +
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Google/Ads/GoogleAds.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class GoogleAds implements INodeType {
testedBy: {
request: {
method: 'GET',
url: '/v11/customers:listAccessibleCustomers',
url: '/v13/customers:listAccessibleCustomers',
},
},
},
Expand Down

0 comments on commit bd1bffc

Please sign in to comment.