THIRD_PARTY_REDIRECT_AD Image Preview - how to get from API?

140 views
Skip to first unread message

Oksana Sulyma

unread,
Feb 26, 2019, 7:50:38 AM2/26/19
to AdWords API and Google Ads API Forum
Hi guys!

I'm looking for an opportunity to pull Image Previews for Ads of type THIRD_PARTY_REDIRECT_AD from Ads API or in Reports.

I see ImageAdUrl == '--' in Adwords Performance Report for such ads.
And I was wondering if there exists/planned some way to pull the previews from https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupAdService, like logoImage for ResponsiveDisplayAd?

Thanks in advance for any info on this!

googleadsapi...@google.com

unread,
Feb 26, 2019, 3:56:51 PM2/26/19
to AdWords API and Google Ads API Forum
Hello Oksana,

Could you please share the report definition you are trying and the account CID for which you are trying to fetch the report? Unfortunately AdsPreview is not available via AdWords API. You could use reply privately to the author option while sharing the details requested.

Regards,
Sai Teja, AdWords API Team



=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    http://googleadsdeveloper.blogspot.com/search/label/adwords_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey

Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/

Oksana Sulyma

unread,
Feb 27, 2019, 7:40:56 AM2/27/19
to AdWords API and Google Ads API Forum
Hello Sai Teja,
I'm looking for kind of theoretic answer. Our service works with the multiple Ads accounts.
Could you advice, if there is any field I can use to get Image preview for THIRD_PARTY_REDIRECT_AD in Ads Performance Report?
I'll send you an example of Account CID and report definition in private reply. Thanks!

Oksana Sulyma

unread,
Mar 4, 2019, 7:35:10 AM3/4/19
to AdWords API and Google Ads API Forum
Copy-pasting here an answer from private messaging in case it could be helpful for someone:
"Hello

In general AdsPreview is not available via AdWords API. If you are seeing the '--'s in the ImageAdURL field then that particular Ad might not be a ImageAd, I took a look at the report shared and the Ads are not ImageAds. Please let me know if you have any further questions. 


Regards,
Sai Teja, AdWords API Team"


Sai Teja (or another API Team member), it is still not clear to me.
I'm speaking of THIRD_PARTY_REDIRECT_AD ads. Are you saying that for this Ad Type there is no opportunity to pull Ad Image Preview ? No way to get it from API reports ? Same as no way to pull from API endpoint (for Responsive ads I can pull Image preview). Are there any plans on support for THIRD_PARTY_REDIRECT_AD previews via API?

Looking forward for public answer here.
Thanks so much!
Oksana

Oksana Sulyma

unread,
Apr 10, 2019, 8:26:45 AM4/10/19
to AdWords API and Google Ads API Forum
Hi there,
I'm still waiting for an answer to my questions above:

I'm speaking of THIRD_PARTY_REDIRECT_AD ads. Are you saying that for this Ad Type there is no opportunity to pull Ad Image Preview ? No way to get it from API reports, is this correct ? Same as no way to pull from API endpoint (for Responsive ads I can pull Image preview). Are there any plans on support for THIRD_PARTY_REDIRECT_AD previews via API?

It would be so great to have confirmation on this from official source! Please let me know if I need to rephrase my questions for best understanding.
Thanks!

googleadsapi...@google.com

unread,
Apr 15, 2019, 11:55:14 AM4/15/19
to AdWords API and Google Ads API Forum
Hello Oksana,

Apologies for the delayed response, we are checking with the team internally. Via API reports it is not possible to fetch the ImageAdUrl for THIRD_PARTY_REDIRECT_AD. You may try using the sourceUrl field from the API endpoint. Please give it a try and let me know if there are any issues.

Regards,
Sai Teja, Google Ads API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:

Oksana Sulyma

unread,
Apr 16, 2019, 9:38:14 AM4/16/19
to AdWords API and Google Ads API Forum
Thanks Sai Teja!
I still need your help to get sourceUrl for my Ads..I've sent my xml privately and really hope to get some input on my question. Thank you!

googleadsapi...@google.com

unread,
Apr 16, 2019, 11:20:15 AM4/16/19
to AdWords API and Google Ads API Forum
Hello Oksana,

Below is the sample request including the SourceUrl and filtering the THIRD_PARTY_REDIRECT_AD's so that the results will contains only those Ads and you still need to point the URL: https://adwords.google.com/api/adwords/cm/v201809/AdGroupAdService

Sample request:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <soapenv:Header>
        <ns1:RequestHeader xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201809" soapenv:mustUnderstand="0">
            <ns1:clientCustomerId>REDACTED_CID</ns1:clientCustomerId>
            <ns1:developerToken>REDACTED</ns1:developerToken>
            <ns1:userAgent>AdWords_API_Support (AwApi-Java, AdWords-Axis/4.1.0, Common-Java/4.1.0, Axis/1.4, Java/1.8.0_181-google-v7, maven, SelectorBuilder, SelectorField)</ns1:userAgent>
            <ns1:validateOnly>false</ns1:validateOnly>
            <ns1:partialFailure>false</ns1:partialFailure>
        </ns1:RequestHeader>
    </soapenv:Header>
    <soapenv:Body>
            <serviceSelector>
                <fields>Id</fields>
                <fields>SourceUrl</fields>
                <fields>AdType</fields>
                <predicates>
                    <field>AdType</field>
                    <operator>EQUALS</operator>
                    <values>THIRD_PARTY_REDIRECT_AD</values>
                </predicates>
                <paging>
                    <startIndex>0</startIndex>
                    <numberResults>100</numberResults>
                </paging>
            </serviceSelector>
        </get>
    </soapenv:Body>
</soapenv:Envelope>

Please give it a try and let me know if you were able to get the data via SourceUrl, If not please share the entire logs to investigate further without redacting any information. Use reply privately to the author while sharing the logs.

Regards,
Sai Teja, Google Ads API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey

Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/

On 04/16/19 09:38:13 oks...@tapclicks.com wrote:
Thanks Sai Teja!
I still need your help to get sourceUrl for my Ads..I've sent my xml privately and really hope to get some input on my question. Thank you!

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscribe@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 "AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/2dfc9fa7-080d-4761-b563-7979377d7d7c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Oksana Sulyma

unread,
Apr 17, 2019, 11:57:29 AM4/17/19
to AdWords API and Google Ads API Forum
Thanks Sai Teja! I've sent you my call details privately because I still get empty result while I expected to see some data..

googleadsapi...@google.com

unread,
Apr 18, 2019, 12:41:08 AM4/18/19
to oks...@tapclicks.com, AdWords API and Google Ads API Forum
Hi Oksana,

Thanks for this information, and apologies for the back-and-forth over this issue! Can I ask if you're using one of the client libraries to make your requests? If so, which one?

I just attempted this same request and am also seeing that for Third party ads data is simply not returned. I'm coordinating with my team to see if this is intended behavior or a bug in our system. If intended I'll try to figure out if there's another way to access data for Third party ads through the API, if it's a bug I expect we'll publish a change that fixes it.

I'll keep you posted on the information I'm able to retrieve. 

Thank you,
Ben Karl, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
On 04/18/19 01:57:29 oks...@tapclicks.com wrote:
Thanks Sai Teja! I've sent you my call details privately because I still get empty result while I expected to see some data..

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscribe@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 "AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.

Oksana Sulyma

unread,
Apr 18, 2019, 4:53:14 AM4/18/19
to AdWords API and Google Ads API Forum
Hello Ben Karl, thanks so much for your answer!
We are not using client libraries. We just use php 'curl' functions for API calls.
Looking forward for any updates on this issue.
Thanks!
Oksana

googleadsapi...@google.com

unread,
Apr 19, 2019, 5:11:10 PM4/19/19
to oks...@tapclicks.com, AdWords API and Google Ads API Forum
Hi Oksana,

Just following up to let you know that I'm continuing to dig into the issue. I've filed a bug with our engineering team that will hopefully lead us to some conclusion. I'll follow up with you as soon as I have more information.

Thanks in advance for your patience, and again I apologize for the time it's taken thus far to get this resolved.

Best,
Ben Karl, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscribe@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 "AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.

Oksana Sulyma

unread,
Apr 22, 2019, 5:26:59 AM4/22/19
to AdWords API and Google Ads API Forum
Thanks for update Ben Karl! Appreciate it very much!

googleadsapi...@google.com

unread,
Apr 23, 2019, 8:52:17 PM4/23/19
to oks...@tapclicks.com, AdWords API and Google Ads API Forum
Hi Oksana,

You're very welcome. I'll follow up as soon as possible.

Best,
Ben, Google Ads API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
    https://ads-developers.googleblog.com/search/label/google_ads_api
    https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 04/22/19 17:26:58 oks...@tapclicks.com wrote:
Thanks for update Ben Karl! Appreciate it very much!

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwor...@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscribe@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 "AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.

Brie Engelson

unread,
May 10, 2019, 12:13:22 PM5/10/19
to AdWords API and Google Ads API Forum
Hello Folks!

Just wanted to check in on this item on behalf of our mutual clients - any thoughts as to when we might be able to access that third party preview?
Also to context, we're currently using the Google Adwords API and have not yet migrated to the Google Ads API, in the event that this has an impact on the solution path.

Thanks so much in advance for your assistance!
 - Brie

Oksana Sulyma

unread,
May 20, 2019, 5:27:26 AM5/20/19
to AdWords API and Google Ads API Forum
Hi Google Ads team! Any news on this topic question? I really hope this thread is not abandoned. Please let us know if there is any progress!
Thanks in advance,
Oksana

Google Ads API Forum Advisor Prod

unread,
May 20, 2019, 9:09:41 AM5/20/19
to oks...@tapclicks.com, adwor...@googlegroups.com

Hi Oksana,

Sorry for the delay! This thread is definitely not abandoned. It's just taking a little more time than hoped to get information on this issue. I'll follow up internally to see if the investigation can be expedited. Thank you for following up!

Best,
Ben, Google Ads API Team 



ref:_00D1U1174p._5001UAq86T:ref

Oksana

unread,
May 20, 2019, 9:10:34 AM5/20/19
to adwor...@googlegroups.com
Thanks Ben!

Google Ads API Forum Advisor Prod

unread,
May 20, 2019, 3:21:57 PM5/20/19
to oks...@tapclicks.com, adwor...@googlegroups.com
You're very welcome, Oksana!

ref:_00D1U1174p._5001UAq86T:ref

Brie Engelson

unread,
Nov 8, 2019, 12:07:20 PM11/8/19
to AdWords API and Google Ads API Forum
All, has there been any movement here at all since the last comment?
Our clients are very disappointed and we would like to understand when this issue will be resolved.

Please advise.
Thanks!

Oksana Sulyma

unread,
Jan 3, 2020, 9:39:40 AM1/3/20
to AdWords API and Google Ads API Forum
Hi Adwords API team!
Any news on our question?
Thanks,
Oksana

Google Ads API Forum Advisor Prod

unread,
Jan 3, 2020, 4:54:26 PM1/3/20
to oks...@tapclicks.com, adwor...@googlegroups.com

Hi Oksana,

Thank you for reaching out. We are still looking into this and we will get back to you shortly.

Regards,
Nikisha Patel, Google Ads API Team



ref:_00D1U1174p._5001UOFljH:ref

Google Ads API Forum Advisor Prod

unread,
Jan 7, 2020, 11:05:13 AM1/7/20
to oks...@tapclicks.com, adwor...@googlegroups.com

Hi Oksana,

As per the latest updates from our team, it looks like the THIRD_PARTY_AD and THIRD_PARTY_REDIRECT_AD that were referenced are for AdX accounts which have been deprecated for some time. Also, the THIRD_PARTY_AD is currently not supported in Web API. Let us know if you have any additional concerns and we will be happy to assist you.



Regards,
Nikisha Patel, Google Ads API Team



ref:_00D1U1174p._5001UOFljH:ref
Reply all
Reply to author
Forward
0 new messages