Hi,
Thanks for the information, but after going through it I couldn't understand 
the response I’m looking for which is endpoint, how we can fetch the data here 
as we didn’t know what is the endpoint to pull the data from google ads.

Aravind Raineni
Sr. Data Collection Engineer
MarTech Data - Digital Solutions
MCIT

NYU Langone Health
One Park Avenue
New York, NY 10016
nyulangone.org
med.nyu.edu
--
Request Reporting or New Tracking<https://i.nyulangone.org/analytics-request>

From: Google Ads API and AdWords API Forum <adwords-api@googlegroups.com>
Sent: Thursday, July 31, 2025 3:35 AM
To: Google Ads API and AdWords API Forum <adwords-api@googlegroups.com>
Subject: Re: Looking for Google Ads API endpoint to monitor Offline Conversion 
job data/pull data from google ads


[EXTERNAL]
Hi,

Thank you for reaching out to the Google Ads API support team.

Please be informed that you are referring to the correct document from the 
Google Ads API. I would recommend you use the Google Ads API to retrieve 
offline data 
diagnostics<https://urldefense.com/v3/__https:/support.google.com/google-ads/answer/13812240__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9XQZGNXZA$>,
 which contain information about the overall health of your conversion import 
and adjustment processes. To retrieve account level conversion upload 
diagnostics, use the following GAQL query:

SELECT
  
customer.id<https://urldefense.com/v3/__http:/customer.id__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9U5R4A1Kg$>,
  offline_conversion_upload_client_summary.alerts,
  offline_conversion_upload_client_summary.client,
  offline_conversion_upload_client_summary.daily_summaries,
  offline_conversion_upload_client_summary.job_summaries,
  offline_conversion_upload_client_summary.last_upload_date_time,
  offline_conversion_upload_client_summary.pending_event_count,
  offline_conversion_upload_client_summary.pending_rate,
  offline_conversion_upload_client_summary.status,
  offline_conversion_upload_client_summary.success_rate,
  offline_conversion_upload_client_summary.successful_event_count,
  offline_conversion_upload_client_summary.total_event_count
FROM offline_conversion_upload_client_summary

This query returns separate 
OfflineConversionUploadClientSummary<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/reference/rpc/v20/OfflineConversionUploadClientSummary__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9V0wCjSiQ$>
 rows for each type of client used in recent imports. To retrieve conversion 
upload diagnostics at the conversion action level, use the following GAQL query:

SELECT
  offline_conversion_upload_conversion_action_summary.conversion_action_name,
  offline_conversion_upload_conversion_action_summary.alerts,
  offline_conversion_upload_conversion_action_summary.client,
  offline_conversion_upload_conversion_action_summary.daily_summaries,
  offline_conversion_upload_conversion_action_summary.job_summaries,
  offline_conversion_upload_conversion_action_summary.last_upload_date_time,
  offline_conversion_upload_conversion_action_summary.pending_event_count,
  offline_conversion_upload_conversion_action_summary.status,
  offline_conversion_upload_conversion_action_summary.successful_event_count,
  offline_conversion_upload_conversion_action_summary.total_event_count
FROM offline_conversion_upload_conversion_action_summary
WHERE offline_conversion_upload_conversion_action_summary.conversion_action_id 
= < INSERT CONVERSION ACTION ID >

Similar to account level diagnostics, this query returns separate 
OfflineConversionUploadConversionActionSummary<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/reference/rpc/v20/OfflineConversionUploadConversionActionSummary__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9VHDA4KVw$>
 rows for each type of client used in recent imports. For example, if you 
recently imported both the Google Ads API and the Google Ads UI, the results 
contain separate entries for the client values of GOOGLE_ADS_API and 
GOOGLE_ADS_WEB_CLIENT. The successful_count, failed_count, and pending_count of 
the 7 most recent import requests, grouped by job_id. The job_id is an optional 
field of 
UploadClickConversionsRequest<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/reference/rpc/v20/UploadClickConversionsRequest__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9XnTE3v7Q$>
 and 
UploadConversionAdjustmentsRequest<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/reference/rpc/v20/UploadConversionAdjustmentsRequest__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9XcpKhG0w$>.
 I would recommend you refer to the guide How to interpret these 
summaries<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/docs/conversions/upload-summaries*how_to_interpret_these_summaries__;Iw!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9VuVPcdWA$>
 for more details. Also, kindly go through the document Monitor offline data 
diagnostics<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/docs/conversions/upload-summaries__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9Xni4f5TQ$>
 to get more information.

I hope this helps! Feel free to get back to us in case of any further queries.

Thanks & Regards,
Google Ads API support team.



On Wednesday, July 30, 2025 at 7:54:59 PM UTC+5:30 
aravind...@nyulangone.org<mailto:aravind...@nyulangone.org> wrote:
Hello Team,
We are building an  RCA dashboard to monitor and validate Offline Conversion 
uploads to Google Ads. As part of this, we need access to both:

  1.  Job-level status information (success/failure, error messages, timestamps)

  1.  Uploaded data summary (gclid, conversion name, conversion time, etc.)
Our goal is to monitor the health of each offline upload job and compare 
submitted data with our internal systems (e.g., Mixpanel/Databricks). We need 
an Ads API endpoint (or set of endpoints) that can:

  *   List past jobs with metadata

  *   Return data records from each job

  *   Indicate success/failure at both row-level and job-level

Documentation i referred :
This is the API we found:
https://developers.google.com/google-ads/api/docs/conversions/upload-summaries<https://urldefense.com/v3/__https:/developers.google.com/google-ads/api/docs/conversions/upload-summaries__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9Xni4f5TQ$>

Ads Help Community:
https://support.google.com/google-ads/community?hl=en&help_center_link=CJCEywYSHkFib3V0IG9mZmxpbmUgZGF0YSBkaWFnbm9zdGljcw&sjid=270752736620216866-NC<https://urldefense.com/v3/__https:/support.google.com/google-ads/community?hl=en&help_center_link=CJCEywYSHkFib3V0IG9mZmxpbmUgZGF0YSBkaWFnbm9zdGljcw&sjid=270752736620216866-NC__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9UTUFJp0A$>
Ask:


  *   Endpoint name(s) and required parameters

  *   Scopes and authentication setup
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/<https://urldefense.com/v3/__https:/googleadsdeveloper.blogspot.com/__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9Ug0oVpZg$>
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to 
adwords-api@googlegroups.com<mailto:adwords-api@googlegroups.com>
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com<mailto:adwords-api+unsubscr...@googlegroups.com>
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en<https://urldefense.com/v3/__http:/groups.google.com/group/adwords-api?hl=en__;!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9XmIq9CLw$>
---
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
adwords-api+unsubscr...@googlegroups.com<mailto:adwords-api+unsubscr...@googlegroups.com>.
To view this discussion visit 
https://groups.google.com/d/msgid/adwords-api/3ebdbf38-cc47-47f7-b11f-cf92a296f60bn%40googlegroups.com<https://urldefense.com/v3/__https:/groups.google.com/d/msgid/adwords-api/3ebdbf38-cc47-47f7-b11f-cf92a296f60bn*40googlegroups.com?utm_medium=email&utm_source=footer__;JQ!!MXfaZl3l!Y4ERvsUXcyLn1uyfqq2PsaQzb9Yl6VUbOnyAcpUzEffBfwEUo3t-xEY9A5_X1amWEcHy3-K-9xpEnfC7mEPkazlgp9X-8Fg3aw$>.

------------------------------------------------------------
This email message, including any attachments, is for the sole use of the 
intended recipient(s) and may contain information that is proprietary, 
confidential, and exempt from disclosure under applicable law. Any unauthorized 
review, use, disclosure, or distribution is prohibited. If you have received 
this email in error please notify the sender by return email and delete the 
original message. Please note, the recipient should check this email and any 
attachments for the presence of viruses. The organization accepts no liability 
for any damage caused by any virus transmitted by this email.
=================================

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/adwords-api/BYAPR18MB28055F8F569106D1D47BD2629327A%40BYAPR18MB2805.namprd18.prod.outlook.com.
  • Re... Google Ads API and AdWords API Forum
    • ... 'Raineni, Aravind' via Google Ads API and AdWords API Forum
      • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum

Reply via email to