how to add a transaction ID to minimize duplicate conversions

2020-08-07 Thread revanth kolluru
Hi team,

I'm using java sdk(com.google.api-ads)  for uploading offline conversions, 
but the problem is I'm getting a repeat rate of conversions as ~1.5 which 
is not possible(it is happening because the conversion value get updated 
frequently for the same transaction and it google ads is counting it as new 
transaction), so is there a way i can correlate a transaction id with each 
conversion ?

below is the sample code i'm using 


  OfflineConversionFeed feed = new OfflineConversionFeed();
feed.setConversionName(conversionName);
feed.setConversionTime(conversionTime);
feed.setConversionValue(conversionValue);
feed.setGoogleClickId(gClid);

OfflineConversionFeedOperation offlineConversionOperation =
new OfflineConversionFeedOperation();
offlineConversionOperation.setOperator(Operator.ADD);
offlineConversionOperation.setOperand(feed);

OfflineConversionFeedReturnValue offlineConversionReturnValue = null;
try {
offlineConversionReturnValue = offlineConversionFeedService
.mutate(new OfflineConversionFeedOperation[] {offlineConversionOperation});
} catch (RemoteException e) {
log.error("RemoteException while sending update to google, message : 
{}",e.getMessage());
log.error(ExceptionUtils.getStackTrace(e));
return false;
}catch (Exception e) {
log.error("Exception while sending update to google, message : 
{}",e.getMessage());
log.error(ExceptionUtils.getStackTrace(e));
return false;
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6dd01542-9fc0-496f-a206-a4aa33e53a97n%40googlegroups.com.


HTML 5 AdType restricting Reporting

2020-08-07 Thread Erik Gray
Hello

In the AdWords Reporting platform we have found that when including AdType 
as a row in the report that HTML5 ad-type Ads are not showing volume.  When 
we remove 'Ad Type' as one of the 'rows' in the Reporting we are able to 
see the volume for these Ads just fine. 

Further, we are seeing this behavior on one account, but not seeing the 
same behavior on another account. Would love to understand why. 

This is applicable to the API because we are seeing the same behavior 
around the HTML5 AdType when leveraging the API. 

I am happy to provide more specifics in a private message to an forum 
advisor.

Erik

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/86b6ef63-b550-40a2-9b0e-b8b95bc2b592n%40googlegroups.com.


Re: How can I get the customer id of my administrator account, only with the access token and the developer-token using rest api?

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Nicolas,

You can use the ListAccessibleCustomers example you mentioned to get the 
customer IDs of your client accounts. However, you will need to input the 
client account IDs manually and make separate calls to get entity information 
such as the campaigns inside the account.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23HzCD:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/xcCVX0QEPMHS00usf5i_rYTXOBH4YcCTbNpw%40sfdc.net.


Re: Fetch details by id

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hello,

Can you please clarify what you are looking to accomplish with your code 
snippet? In your first snippet, I can see that you are creating a campaign and 
then retrieving it. However, it is unclear what you are looking to do in your 
second snippet. Kindly clarify so that I may guide you in the right direction. 
Additionally, our team does not provide support in implementing code, but we 
are able to help resolve any errors or issues you encounter during your 
implementation.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q23HjQE:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/L0J__0QEPLNE00eoiZX5FGRx-SHFv0UGaxsg%40sfdc.net.


RE: Automated Rules In Adwords API

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Muhammad,

Unfortunately, there is no automated rules feature in the API. As mentioned 
previously, you should use Google Ads Scripts to achieve similar functionality.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23IVGE:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/itHet0QEPK7600NBtroUyUSIutfA-ED48XfQ%40sfdc.net.


Re: How to reporting on Sitelink dimensions

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Theo,

Unfortunately, there is no report in the API that will give you the fields you 
are looking for. The only report types are the ones listed here.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23Hkjf:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/qLyRM0QEPJUX00xhCK5FPsRX2GSXcsRk-jwA%40sfdc.net.


Re: "HTML5 Ad" has no AdType in the report and is not returned by AdgroupAdService

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hello,

Using AdWords API, you will see these ads return but the AdType will come in as 
blank.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q2193kQ:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/wDj8p0QEPJMK00pelwXHBIT3mojh7POl_ryg%40sfdc.net.


RE: Adwords API sends me wrong Data for Campaign ID

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Poker,

Thanks for reaching out. With regards to your concern, can you please provide 
report definition and screenshot of the UI along with customer id so that i can 
further investigate the issue. Please reply privately to author options while 
sharing the details.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q23IOex:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/nJLdj0QEPJDR00pVyfiZJ9SMGJLWPENfP1Gg%40sfdc.net.


Transfering data to bigquery

2020-08-07 Thread Jaroslaw Wygoda
Hi,

Docs 

 
suggest transferring google ads data to bigquery using manager account but 
I'm getting error:
*Non-manager account doesn't exist (or account is not active), so data will 
not be imported.*

I couldn't find description of this error but it indicates that I can 
transfer data only from non-manager accounts which works ok. Do you know 
what does this error mean?

Thanks,
Jarek

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/09852879-1a46-428d-9416-3b7cf30dce6dn%40googlegroups.com.


RE: Audience Performance Report, UserListName showing ' --' instead of real value

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Za,

Thanks for reaching out. With regards to your concern, can you please provide 
the customer id ans screenshot of the UI so that i can further investigate 
issue. Please reply privately to the author option while sharing details.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q23IH4o:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7mSDR0QEPIZV00DVr3LvvwQeWhSP371kNAKg%40sfdc.net.


Re: How can I get the customer id of my administrator account, only with the access token and the developer-token using rest api?

2020-08-07 Thread nikher...@gmail.com
I need to get the customer id the mcc that is what I mean by the 
administrator id.
At the time of logging in, get that customer ID, in the image I show which 
customer ID I mean.
 [image: ejemplo customer id.png] 

El viernes, 7 de agosto de 2020 a las 13:34:16 UTC-5, adsapiforumadvisor 
escribió:

> Hi Nicolas,
>
> If by administrator account, you mean manager account, then I'm afraid 
> it's not possible to obtain this from the client account level. You can 
> only obtain the client accounts from the manager level.
>
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q23HzCD:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/89329daf-6016-4555-b4ab-4ad7706c89e6n%40googlegroups.com.


Re: sending url request

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Hussein,

All the prerequisites for using the API are mentioned in this guide. You will 
need a developer token, client customer ID (Google Ads account), OAuth2 
credentials, and a refresh token. You can find out how to retrieve these in the 
guide I provided.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q22bB2U:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/FC6Jv0QEPIB400H35OjtP0QeecKOdwaJiQfQ%40sfdc.net.


Re: How can I get the customer id of my administrator account, only with the access token and the developer-token using rest api?

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Nicolas,

If by administrator account, you mean manager account, then I'm afraid it's not 
possible to obtain this from the client account level. You can only obtain the 
client accounts from the manager level.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23HzCD:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ThSib0QEPI8B00RAD7x0gNQtu-9cxaboDIgw%40sfdc.net.


Re: Reporting on Responsive Display Ads with Ads API v3

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Michael,

Thank you for providing the information. Yes, the ad_group_ad_asset_view report 
is supported for responsive display ads. Can you please confirm customer id and 
screenshot of the UI so that i can further investigate the issue. Please reply 
privately to the author while sharing details.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q23HnyT:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/yUuE20QEPGT700e8FgnPuMQga4wq_3Y6DfGQ%40sfdc.net.


Re: User_ID customer match

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Nick,

Thank you for providing the logs! They were very helpful. Upon investigating 
the logs, I noticed that you were pulling conversions with a trackingCodeType 
of WEBPAGE. Upon checking in the specified account (903-296-3935), I found that 
the conversions returned were the only conversions that met your query 
(conversions with a source type of "Website"). The conversion you are searching 
for ("NE: Test Offline Conversion") seems to not exist in account 903-296-3935, 
but instead exists in the sub-account 807-107-6807. You can try pulling this 
conversion by specifying 807-107-6807 as the customerClientId instead. 
Additionally, make sure you are adjusting the trackingCodeType in your query so 
that it pulls conversions with a source type of "Import from clicks" as shown 
in your screenshot.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q23Hp5Q:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/LqX-c0QEPFPU00CrCPZOhgQ3qr4P0htqrCRQ%40sfdc.net.


RE: search_click_share at ad_group level not available, contrary to documentation (google ads api beta)

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hello,

There is an issue on our side. I'll pass this over to the team and let you know 
when this issue is resolved.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23IO39:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ugtsz0QEPFJD00NxaMJ6EZQAu1dkTunEDrcg%40sfdc.net.


Re: Automated Rules In Adwords API

2020-08-07 Thread Muhammad Javed
Hello,

Here the scenario that we want to implement through rules using an API
We want to automatically raise the bid of a keyword for a certain day of 
the week (DoW) and certain hour of the day (HoD). Its option is available 
in rules UI in Google Ads but there is no way to do it using Google Ads 
API. Please provide the reference API if it exists.

On Thursday, 17 February 2011 19:16:02 UTC+5, Rob Ryan wrote:
>
> Just wondering if bringing the new automated rules to the adwords API is 
> on the roadmap?
> Thanks.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/13db98b5-0093-4cf3-bdfa-30d8d9428a67o%40googlegroups.com.


Re: Map setup in advanced search

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Denma,

Thanks for reaching out. Please see my answers to your questions below.

Neither the deprecation nor the sunset date has been set yet. Please keep an 
eye on our blog for more updates on this.
Yes, The Google Ads API now supports PHP version 7.2 or greater. Please see 
here.

Let me know if you have any question.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q23HQKP:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/_2Bi70QEPE8200-k6khbitT7GsevZXowgSKA%40sfdc.net.


RE: I want to move my MCC account to another account.

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out to us. I see that you're asking if a token can be 
transferred. You can reach out to the API Compliance Team to initiate a token 
transfer if you'd like to transfer your token to another MCC. Let me know if 
you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5004Q23IOp7:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6THTE0QEPDGZ00KKxPN79aQki8KKq1BmrarA%40sfdc.net.


Re: Can I set a date range when using Generate Historical Metrics of the Keyword Plan service?

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi Fred,

Thank you for reaching out. Unfortunately, it is currently not supported to 
generate Historical Metrics prior to the last 12 months date range by 
KeywordPlanService in the Google Ads API. There is already a feature request to 
support it in the Google Ads API.  Please keep an eye on our blog for the 
announcements and updates on new releases.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5004Q23IBbb:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/F5ojZ0QEPC8F00RIBhFYjnRuKDIxjJW02wCQ%40sfdc.net.


Re: Campaign settings using Google Ads API

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out. You could see a list of the CampaignCriterion that 
you can apply to the campaign and then query the campaign_criterion resource to 
fetch the corresponding data. For Network and Budget, you could query them from 
the campaign resource.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5004Q23I8vx:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/J-Srd0QEPBG5006gfFgAV_RgiLaciCpeAXEg%40sfdc.net.


RE: UserListService example using Python

2020-08-07 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out. Unfortunately, we do not have sample code for 
creating userLists in Python, but we do have code samples available here in 
Java for you to use as reference. Additionally, you can find the available 
UserListOperations here. You can also refer to our Remarketing and Audience 
Targeting guide here for more details. For our Customer Match guide, you can 
refer here.

If you have any additional questions or if you run into any issues during your 
implementation, let us know.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q23IGjG:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ZrX7E0QEPAIK007AMcBVstRaGw3msgNG2-Yw%40sfdc.net.


Re: "HTML5 Ad" has no AdType in the report and is not returned by AdgroupAdService

2020-08-07 Thread LP AI
As the Ads API is still in beta is there anyway to get these ads in the 
current Adwords API?  
https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupAdService.Ad.Type?hl=pt-BR
  

We want to be able to get information about these ads such as the 
dimensions but how can we know the type?

On Wednesday, 24 June 2020 at 19:12:20 UTC+2 adsapiforumadvisor wrote:

> Hi Konstantin,
>
> These ads are a new ad type that are only available in AdWords API through 
> reporting. You won't be able to create or mutate these ads using AdWords 
> API. This ad is available through Google Ads API as a DisplayUploadAd 
> 
> .
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q2193kQ:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fa42b890-431a-4cf1-8652-4f4bfb2ae498n%40googlegroups.com.


I want to move my MCC account to another account.

2020-08-07 Thread YuK1
Hi.

If I apply for Basic, my eligible MCC account will be activated, but can I 
transfer this account to another Google account?
For example, if a user with an MCC account leaves the company.

Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f4102361-d9be-49de-9f27-05fe960ded7fn%40googlegroups.com.


Adwords API sends me wrong Data for Campaign ID

2020-08-07 Thread Poker Face
Hello Support,

I have been calling the SHOPPING PERFORMANCE REPORT from the Adwords API 
for a while. All the Data I was obtaining was correct until today. I have 
noticed that the API is sending me wrong Data for my Campaign ID.
I can see that because the Campaign ID in my Google Adwords Account do not 
match the Campaign ID in the data I get from the API.
Any idea what to do here ?

Sincerely

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c5d2ecb1-941c-4969-a025-c989fa785ef7n%40googlegroups.com.


Re: sending url request

2020-08-07 Thread HsenWehbe
thanks alot
sorry for asking alot , but can i access the google ads api directly 
without a service ? in other words , can i access google ads without 
creating an account ?
regards.
 

On Tuesday, 4 August 2020 at 21:33:38 UTC+3 adsapiforumadvisor wrote:

> Hi Hussein,
>
> Campaign resource names have the following form:
>
> *customers/{customer_id}/campaigns/{campaign_id}*
>
> Hope this helps! Let me know if you have any additional questions.
>
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q22bB2U:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0622b892-d4d0-4a0f-87e2-2a18a9778e9cn%40googlegroups.com.


Re: Fetch details by id

2020-08-07 Thread denma test

I may did mistake, have used SET but it for update operation instead that i 
may need to use selectors with get method as in below
$selector = new Selector();
$selector->setFields(['Id']);
$selector->setPredicates(
[
new Predicate('Id', PredicateOperator::IN, [$creativeId])
]
);

$res = $campaignService->get($selector);
Am i right here

On Friday, August 7, 2020 at 3:17:57 PM UTC+5:30, denma test wrote:
>
> Thanks for the quick response, i have done with Campaign and AdGroups data 
> using get method, working on Ads part, if any will ask you. FYI - added 
> part of my code to get campaign details, the same way done for adgroups, 
> please correct me if am in wrong way.
>
> $session = self::setSession();
> $adWordsServices = new AdWordsServices();
> $campaignService = $adWordsServices->get($session, 
> CampaignService::class);
> $campaignId = intval($campaignId);
> // $campData = array();
> $campData = [];
>
> // Create a campaign with PAUSED status.
> $campaign = new Campaign();
> $campaign->setId($campaignId);
>
>  // Create a campaign operation and add it to the list.
> $operation = new CampaignOperation();
> $operation->setOperand($campaign);
> $operation->setOperator(Operator::SET);
> $operations[] = $operation;
>
> // Fetch the campaign from the server.
> $result = $campaignService->mutate($operations);
>
> On Thursday, August 6, 2020 at 10:43:34 PM UTC+5:30, adsapiforumadvisor 
> wrote:
>>
>> Hello,
>>
>> Yes, you will have to use the get() methods within each service to pull 
>> the data you are looking for. Here are the respective links to the services 
>> you are looking for in AdWords API: 
>>
>>- CampaignService 
>>
>> 
>>  
>>- AdService 
>>
>> 
>>  
>>- AdGroupService 
>>
>> 
>>  
>>
>> For code samples, you can refer to this 
>> 
>>  documentation. 
>> If you have additional questions, please don't hesitate to ask. 
>>
>> Regards,
>> Danica, Google Ads API Team 
>>
>>
>>
>>
>> ref:_00D1U1174p._5004Q23HjQE:ref
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a42d6c33-ac9c-4af7-b1b2-84d131438565o%40googlegroups.com.


search_click_share at ad_group level not available, contrary to documentation (google ads api beta)

2020-08-07 Thread Younggyo Lee
Hi team,

I was having difficulties at getting some data from API.
I have tried this query in Google Ads API Beta v3 and v4 but always getting 
this error.

The documentation says it's available 
https://developers.google.com/google-ads/api/fields/v4/ad_group#metrics.search_click_share
I can also see that the field is available from the UI.
--
Query used:

query = (
 "SELECT "
 "segments.date, "
 "ad_group.id, "
 "ad_group.name, "
 "metrics.search_click_share " # This column throws API error for unknown 
reason
 "FROM ad_group "
 'WHERE segments.date BETWEEN "2020-08-01" AND "2020-08-07" '
 "AND metrics.impressions > 0 "
 "ORDER BY segments.date DESC "
)
--

--
Part of error message from the API:

 query_error: PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE
  }
  message: "Cannot select or filter on the following metrics: 
\'search_click_share\'(could not support requested resources: 
\'AD_GROUP\'), since metric is incompatible with the resource in the FROM 
clause or other selected segmenting resources."
--

Can you please help on this? 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 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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4d73bb2c-bf59-4470-a12a-932e9a602b4ao%40googlegroups.com.


Re: Map setup in advanced search

2020-08-07 Thread denma test
Okay, finally have 2 queries,
1. whether AdWrids will get deprecated soon, it there any time predicted on 
it?
2. If Google Ads API will work with PHP 5.6?
Kindly clarify these, thanks in advance.

On Thursday, August 6, 2020 at 11:52:43 PM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi Denma,
>
> Thanks for reaching out. Unfortunately, it is not available in the Adwords 
> API. In terms of the feature request, I just got word from my team that we 
> are actually no longer planning to make any enhancements to the AdWords API 
> as our top priority is getting the Google Ads API ready for general 
> availability. we are no longer planning on adding enhancements to the 
> AdWords API, but we will continue to fully support it, and address any bugs 
> as they are found.
>
> Thanks,
> Nirmita Patel Google Ads Team
>
>
> ref:_00D1U1174p._5004Q23HQKP:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ec19c63e-f669-4e5a-8a16-20dab800a901o%40googlegroups.com.


Re: Fetch details by id

2020-08-07 Thread denma test
Thanks for the quick response, i have done with Campaign and AdGroups data 
using get method, working on Ads part, if any will ask you. FYI - added 
part of my code to get campaign details, the same way done for adgroups, 
please correct me if am in wrong way.

$session = self::setSession();
$adWordsServices = new AdWordsServices();
$campaignService = $adWordsServices->get($session, 
CampaignService::class);
$campaignId = intval($campaignId);
// $campData = array();
$campData = [];

// Create a campaign with PAUSED status.
$campaign = new Campaign();
$campaign->setId($campaignId);

 // Create a campaign operation and add it to the list.
$operation = new CampaignOperation();
$operation->setOperand($campaign);
$operation->setOperator(Operator::SET);
$operations[] = $operation;

// Fetch the campaign from the server.
$result = $campaignService->mutate($operations);

On Thursday, August 6, 2020 at 10:43:34 PM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hello,
>
> Yes, you will have to use the get() methods within each service to pull 
> the data you are looking for. Here are the respective links to the services 
> you are looking for in AdWords API: 
>
>- CampaignService 
>
> 
>  
>- AdService 
>
> 
>  
>- AdGroupService 
>
> 
>  
>
> For code samples, you can refer to this 
> 
>  documentation. 
> If you have additional questions, please don't hesitate to ask. 
>
> Regards,
> Danica, Google Ads API Team 
>
>
>
>
> ref:_00D1U1174p._5004Q23HjQE:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4aea024d-3dc5-4b75-be34-7503039a0369o%40googlegroups.com.


Re: User_ID customer match

2020-08-07 Thread Nicholas Edwards
Thanks - i emailed you the details.

On Thursday, August 6, 2020 at 8:10:38 PM UTC+1 adsapiforumadvisor wrote:

> Hi Nick,
>
> Can you please provide your customerClientId as well as the complete 
> detailed logs of the request and response so that I can deeper investigate 
> why this conversion is not being returned? Ensure that you provide this 
> information via the *Reply privately to author *option in order to 
> protect sensitive data. If the option is not available to you, you can 
> email our support alias at googleadsa...@google.com. 
>
> Thanks,
>
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q23Hp5Q:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/11176abc-9667-4239-8665-e15add2f2446n%40googlegroups.com.