Find gclid using campaign id

324 views
Skip to first unread message

Bhavya Ardeshana

unread,
May 16, 2024, 11:19:29 AM5/16/24
to Google Ads API and AdWords API Forum
I want to find gclid with the help of using campaign_id 

Please provide me query to find gclid

bhavya dev

unread,
May 16, 2024, 11:19:35 AM5/16/24
to Google Ads API and AdWords API Forum
please give me Restful API endpoint of google ads and query to find gclid using campaign id

Google Ads API Forum Advisor

unread,
May 16, 2024, 12:33:11 PM5/16/24
to bhavya...@gmail.com, adwor...@googlegroups.com
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 : "SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = '2024-05-16' AND campaign.id = 123456789"

You may use this Google Ads Query Builder to build your own query with the click_view resource.

Hope this helps. If you have any more queries, please feel free to get back to us.
 
This message is in relation to case "ref:!00D1U01174p.!5004Q02tJ01J:ref" (ADR-00235302)

Thanks,
 
Google Logo Google Ads API Team


Google Ads API Forum Advisor

unread,
May 16, 2024, 2:53:30 PM5/16/24
to bhavyaard...@gmail.com, adwor...@googlegroups.com
Hi,

Thank you for contacting the Google Ads API support team.

I can see in the system that you have previously raised this concern on another thread with the subject 'Find gclid using campaign id', and it has already been responded to. To avoid multiple threads on the same issue, I would request you to revisit the earlier thread and continue the discussion on the same for further updates on the issue.
 
This message is in relation to case "ref:!00D1U01174p.!5004Q02tJ0Eg:ref" (ADR-00235348)


Thanks,
 
Google Logo Google Ads API Team


bhavya dev

unread,
May 17, 2024, 6:22:08 PM5/17/24
to Google Ads API and AdWords API Forum
Hi, Thank you for your response


Request Body :- "SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = '2023-12-10' AND campaign.id = {my_campaign_id}"

Response :- {
"error": {
"code": 400,
"message": "Request contains an invalid argument.",
"status": "INVALID_ARGUMENT",
"details": [
{
"errors": [
{
"errorCode": {
"requestError": "UNKNOWN"
},
"message": "The requested date is too old. It cannot be older than 90 days."
}
],
"requestId": "6p9T_bHXo7cIp1O-gBfIeg"
}
]
}
}

bhavya dev

unread,
May 17, 2024, 6:22:09 PM5/17/24
to Google Ads API and AdWords API Forum
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:

bhavya dev

unread,
May 17, 2024, 6:22:10 PM5/17/24
to Google Ads API and AdWords API Forum
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
                campaign.name,
                campaign_budget.amount_micros,
                campaign.status,
                campaign.optimization_score,
                campaign.advertising_channel_type,
                metrics.clicks,
                metrics.impressions,
                metrics.ctr,
                metrics.average_cpc,
                campaign.bidding_strategy_type,
                metrics.cost_micros
                FROM campaign
                  WHERE segments.date BETWEEN '{start_date}' AND '{end_date}'

So when i try to fetch gclid with "SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date BETWEEN '2022-10-01' AND '2022-10-30' AND campaign.id = 14529401748" this query getting error [Queries including ClickView must have a filter limiting the results to one day]. 

I want to fetch gclid such like this , please give me solution to resolve this error.
On Thursday 16 May 2024 at 22:03:11 UTC+5:30 Google Ads API Forum Advisor wrote:

D. H.

unread,
May 20, 2024, 1:05:42 AM5/20/24
to Google Ads API and AdWords API Forum
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' AND '2024-05-01'

But if I extend it to even two days I return the same error you have:
SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date BETWEEN '2024-05-01' AND '2024-05-02'

GoogleAdsException: (<_SingleThreadedRendezvous of RPC that terminated with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an invalid argument." debug_error_string = "UNKNOWN:Error received from peer ipv4:xxx.xx.xxx.xxx:xxx {created_time:"2024-05-20T09:30:00.000000+00:00", grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, <_SingleThreadedRendezvous of RPC that terminated with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an invalid argument." debug_error_string = "UNKNOWN:Error received from peer ipv4:xxx.xx.xxx.xxx:xxx {created_time:"2024-05-20T09:30:00.000000+00:00", grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, errors { error_code { request_error: UNKNOWN } message: "Queries including ClickView must have a filter limiting the results to one day." } request_id: "xxxxxxxxxxxxxxxxxxxxxx" , 'xxxxxxxxxxxxxxxxxxxxxx')

Hope this helps,

D.H.

D. H.

unread,
May 20, 2024, 1:05:43 AM5/20/24
to Google Ads API and AdWords API Forum
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: (<_SingleThreadedRendezvous of RPC that terminated with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an invalid argument." debug_error_string = "UNKNOWN:Error received from peer ipv4:xxx.xxx.xxx.xx:xxx {created_time:"2024-05-20T09:30:00.000000+00:00", grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, <_SingleThreadedRendezvous of RPC that terminated with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an invalid argument." debug_error_string = "UNKNOWN:Error received from peer ipv4:xxx.xxx.xxx.xx:xxx {created_time:"2024-05-20T09:30:00.000000+00:00", grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, errors { error_code { request_error: UNKNOWN } message: "The requested date is too old. It cannot be older than 90 days." } request_id: "xxxxxxxxxxxxxxxxxxxxxx"
, 'xxxxxxxxxxxxxxxxxxxxxx')

D.H.
On Saturday, May 18, 2024 at 6:22:10 AM UTC+8 bhavya dev wrote:

Google Ads API Forum Advisor

unread,
May 20, 2024, 7:28:39 AM5/20/24
to heiberge...@gmail.com, adwor...@googlegroups.com
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.
Reply all
Reply to author
Forward
0 new messages