Re: find gclid using campaign id

2024-05-20 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi, As per the click_view document, queries including ClickView must have a filter limiting the results to one day and can be requested for dates back to 90 days before the time of the request. This message is in relation to case "ref:!00D1U01174p.!5004Q02tJ01J:ref" (ADR-00235302) Thanks,

Re: find gclid using campaign id

2024-05-19 Thread D. H.
And with apologies for missing the 90 days part, as well as limiting results to one day, you cannot fetch results older than 90 days. This query returns an error for me: SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = '2024-02-01' GoogleAdsException:

Re: find gclid using campaign id

2024-05-19 Thread D. H.
Hi, You need to include a filter to limit the results to a single day. This query works for me: SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = '2024-05-01' As does this: SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date BETWEEN '2024-05-01'

Re: find gclid using campaign id

2024-05-17 Thread bhavya dev
Hi, Thank you for your response. Can you please provide me Rest API endpoint and query to find Campaign_id using gclid. For ex :- I've gclid , so can I able to find campaign_id using that gclid ?? On Thursday 16 May 2024 at 22:03:11 UTC+5:30 Google Ads API Forum Advisor wrote: > Hi, > >

Re: find gclid using campaign id

2024-05-17 Thread bhavya dev
Hi, I've already posted error which I'm facing to fetch data older than 90 days actually I can able to fetch campaign impression, ctr, clicks etc.. detail which older than 90 days. I'm fetching my campaign detail below query I've used to fetch campaign details :- SELECT

Re: find gclid using campaign id

2024-05-17 Thread bhavya dev
Hi, Thank you for your response I'm getting error when i try to call Rest Api :- https://googleads.googleapis.com/v16/customers/{customer.id}/googleAds:searchStream Request Body :- "SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = '2023-12-10' AND campaign.id =

RE: find gclid using campaign id

2024-05-16 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi, Thank you for reaching out to the Google Ads API support team. Please refer to this Rest API endpoint : https://developers.google.com/google-ads/api/rest/reference/rest/v16/customers.googleAds/searchStream Also, kindly try the below provided query to get the GCLID using campaign id. Query