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://support.google.com/google-ads/answer/13812240>, 
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,
  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://developers.google.com/google-ads/api/reference/rpc/v20/OfflineConversionUploadClientSummary>
 
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://developers.google.com/google-ads/api/reference/rpc/v20/OfflineConversionUploadConversionActionSummary>
 
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://developers.google.com/google-ads/api/reference/rpc/v20/UploadClickConversionsRequest>
 
and UploadConversionAdjustmentsRequest 
<https://developers.google.com/google-ads/api/reference/rpc/v20/UploadConversionAdjustmentsRequest>.
 
I would recommend you refer to the guide How to interpret these summaries 
<https://developers.google.com/google-ads/api/docs/conversions/upload-summaries#how_to_interpret_these_summaries>
 
for more details. Also, kindly go through the document Monitor offline data 
diagnostics 
<https://developers.google.com/google-ads/api/docs/conversions/upload-summaries>
 
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 
[email protected] 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)
   2. *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
 
Ads Help Community:
<https://support.google.com/google-ads/community?hl=en&help_center_link=CJCEywYSHkFib3V0IG9mZmxpbmUgZGF0YSBkaWFnbm9zdGljcw&sjid=270752736620216866-NC>
https://support.google.com/google-ads/community?hl=en&help_center_link=CJCEywYSHkFib3V0IG9mZmxpbmUgZGF0YSBkaWFnbm9zdGljcw&sjid=270752736620216866-NC

*Ask:*

   - Endpoint name(s) and required parameters
   - Scopes and authentication setup
   

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/adwords-api/3ebdbf38-cc47-47f7-b11f-cf92a296f60bn%40googlegroups.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