Error Linking MCC Test Account

2013-09-24 Thread Jeremy Aube
I tried linking an MCC test account to a standard MCC account to be managed 
by the standard MCC account, but received the following error:


   - Enter descriptive names
   
Enter client names (optional)
The following customer IDs had errors
992-886-5208An error occurred. Please try again later.
Back
 
Request client approval
© 2013 Google | AdWords 
Home
 | Editorial 
Guidelines
 | Privacy Policy 

Does this mean I can't link the two MCCs or is this an issue that can be 
resolved?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Changing FeedItemDevicePreference from mobile to none for enhanced sitelink adextensions

2013-09-24 Thread Jay

>
> Hi Takeshi,
>

Thanks for your help. I was directly setting a null in 
setDevicePreference() which is wrong. It is working perfectly now.


Best Regards,
Jay




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Completed OAuth2 setup but still being asked for email and password pair

2013-09-24 Thread Alan Coleman
Okay, I have to admit that this was a schoolboy error on my behalf. The 
line ;[OAuth2] needs to be uncommented to signal the use of OAuth2 
authentication. If I'd have used the file from code.google properly I'd 
have known this, rather than copying what I thought I needed. Muppet. 
https://code.google.com/p/google-api-adwords-php/source/browse/src/Google/Api/Ads/AdWords/auth.ini

Thanks for everyone's help and apologies for any time wasting.

On Tuesday, September 3, 2013 6:36:05 PM UTC, Alan Coleman wrote:
>
> Hello everyone,
>
> I have completed my OAuth2 set up but am still receiving errors asking for 
> the email and password pair.
>
> This was my process, as per the documentation:
>
>
>1. Set up an application in the API Console
>2. client_id and client_secret added to auth.ini
>3. client_id and client_secret added to GetRefreshToken.php
>4. Run GetRefreshToken.php through command line
>5. Open the supplied URL in a browser after signing in to account
>6. Accept when prompted
>7. Copy Authorization code back into command line
>8. Wait for refresh_token
>9. Copy refresh_token into auth.ini
>10. Run 
>
> /adwords_api_php_4.5.1/examples/AdWords/v201302/BasicOperations/GetCampaigns.php
>
>
> The following error is being returned to the browser:
>
> An error has occured: Validation failed for [email] with value []: email 
> is required and cannot be NULL.
>
> My auth.ini contains the following variables that are not coded out:
>
>
>1. developerToken 
>2. userAgent
>3. client_id
>4. client_secret
>5. refresh_token
>
> I simply can't believe I'm finding this so difficult, I've been hacking 
> away at it for weeks.
>
> As always, any help would be appreciated.
>
> Many thanks
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Simple Questions about the OAuth2 access_token and Redirect URI

2013-09-24 Thread Alan Coleman
Thanks to Ewan's fantastic tutorial I know have OAuth2 sorted.

Using his simple example everything I've spent the last few weeks reading 
now makes sense.

Cheers Ewan!

On Thursday, September 12, 2013 10:49:18 AM UTC, Ewan Heming wrote:
>
> Hi Alan,
>
> You might find the one on the OAuth 
> Playgroundeasier to 
> get going quickly. Also, you might just need to refresh your 
> access token with the code you've already written already. Just run the 
> following code before making API calls:
>
> $handler = $user->GetOAuth2Handler();
> $oauth2Info = $handler->RefreshAccessToken($user->GetOAuth2Info());
> $user->SetOAuth2Info($oauth2Info);
>
> Regards,
>
> Ewan
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Changing FeedItemDevicePreference from mobile to none for enhanced sitelink adextensions

2013-09-24 Thread Takeshi Hagikura (AdWords API Team)
Hi Jay,

Apologies for responding it late, I'm able to update the devicePreference 
by sending devicePreference as null.

like this xml.


http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  
http://schemas.xmlsoap.org/soap/actor/next"; 
soapenv:mustUnderstand="0" 
xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201306";>
  https://adwords.google.com/api/adwords/cm/v201306";>**
  ***
  
  INSERT_COMPANY_NAME (AwApi-Java/8.12.1, Axis/1.4, 
Java/1.7.0-google-v5, legacy)
  false
  false

  
  
https://adwords.google.com/api/adwords/cm/v201306";>
  
SET

  1968
  80088
  

  

  
  
[24 Sep 2013 19:06:07,808 - DEBUG]

  http://schemas.xmlsoap.org/soap/envelope/";>

  https://adwords.google.com/api/adwords/cm/v201306";>
0004e71e490b44a80a4219492008
FeedItemService
mutate
0
100
  


  https://adwords.google.com/api/adwords/cm/v201306";>

  FeedItemReturnValue
  
1968
80088
ACTIVE
20131010 101010 Asia/Tokyo
20131110 101010 Asia/Tokyo

  1
  http://code.google/


  2
  
http://code.google.com/p/google-api-adwords-java/wiki/NoClientLibrary


  
MONDAY
4
FIFTEEN
7
FORTY_FIVE
  
  
MONDAY
8
FIFTEEN
20
FORTY_FIVE
  

  

  

  



Or the code snippet for Java is like this.

FeedItem feedItem = new FeedItem();
feedItem.setFeedId(feedId);
feedItem.setFeedItemId(feedItemId);
FeedItemDevicePreference feedItemDevicePreference = new 
FeedItemDevicePreference();
feedItemDevicePreference.setDevicePreference(null);
feedItem.setDevicePreference(feedItemDevicePreference);

FeedItemOperation operation = new FeedItemOperation();
operation.setOperand(feedItem);
operation.setOperator(Operator.SET);


Can you please try that?

Best,
- Takeshi, AdWords API Team

On Wednesday, September 18, 2013 10:11:53 AM UTC+9, Jay wrote:
>
> Hi Takeshi,
>
> Thanks for taking the time to review our issue. We are still experiencing 
> this today, enclosed is the most recent soaplog from a few minutes ago. 
> Scenario is the same where we have an AdExtension on AdWords with mobile 
> preference checked, and we could not remove it.
>
>
> Best Regards,
> Jay
>
> In message: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="
> http://www.w3.org/2001/XMLSchema"; xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance";>
>  
>   http://schemas.xmlsoap.org/soap/actor/next"; soapenv:mustUnderstand="0" 
> xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201302";>
>.
>..
>..
>.
>false
>false
>   
>  
>  
>   https://adwords.google.com/api/adwords/cm/v201302";>
>
> SET
> 
>  1161248
>  21426248
>  0101 00
>  0101 00
>  
>   1
>   desantura.ru
>  
>  
>   2
>   
> http://img.mediaplex.com/ad/ck?{copy:mprid}&{copy:mpl}&secrid={creative}&senetid={ifsearch:search}{ifcontent:content}-sitelink&mpro=http://www.desantura.ru
> 
>  
> 
>
>   
>  
> 
> = Out message: http://schemas.xmlsoap.org/soap/envelope/";> xmlns="https://adwords.google.com/api/adwords/cm/v201302";>0004e69e04c5be200ae77d4a4334FeedItemServicemutate11590  
> xmlns="https://adwords.google.com/api/adwords/cm/v201302
> ">FeedItemReturnValue116124821426248ACTIVE1
> desantura.ru
> 2
> http://img.mediaplex.com/ad/ck?{copy:mprid}&{copy:mpl}&secrid={creative}&senetid={ifsearch:search}{ifcontent:content}-sitelink&mpro=http://www.desantura.ru
> 30001
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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

Re: [KeywordPerformance v201109] Unexplainable "Authorization: User permission denied"

2013-09-24 Thread bhavesh thakker
facing the same issue. Sometimes it works and sometimes it doesnt. Please 
let me knw if there is any proper solution for the same

On Tuesday, January 31, 2012 8:28:54 PM UTC+5:30, AdWhiz wrote:
>
> Hi All, 
>
> I get this error for some specific customer/day combinations (no error 
> on other cases): 
>
> Report contents are invalid. - !!!2|||-1||| AuthorizationError.USER_PERMISSION_DENIED 
> @ ??? 
>
> Error is always the same with different customer IDs/days. 
>
> I suspect bad generated report by .NET client library (I am using most 
> recent version, updated yesterday) OR corrupted report downloaded from 
> Google AdWords API servers (it would not be the 1st time). 
>
> Can you offer any advice/insight on this specific issue? 
>
> Thanks in advance. 
>
> Kind regards, 
> -- 
>   Giuseppe 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


MCC Billing information tab missing?

2013-09-24 Thread ipebbles . ipebbles . aw . test3
This happens in both my main MCC account and my MCC test account. The 
billing tab is missing.  I can only reach it once when I apply for the APK 
developer key via the My Account->AdWords API Center.  After it confirms 
the card, I can no longer find out how to access billing.  Also, If for 
some reason I left the page without filling out the billing, I could never 
come back to fill in the billing (this happened with several other test 
accounts I tried to create).  Can anyone clarify?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Continue Button is Not working Billing Preference Setup using Credit Card. !

2013-09-24 Thread Amit P Jivani
Hi Paul, 

This is policy of  Google in India. For Any Credit Card Payment Method, One 
has to fax authorization letter to Google at given Number. It has been 10 
days since we did it, so far no body has replied or that button has not 
been enabled... 

On Monday, 23 September 2013 15:04:26 UTC+5:30, Paul Matthews (AdWords API 
Team) wrote:
>
> Hi Amit,
>
> This looks to be an issue with myclientcenter. Please provide feedback in 
> the website to get the appropriate action.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Thursday, 19 September 2013 09:09:17 UTC+1, Amit P Jivani wrote:
>>
>> We are India Based Agency. At MCC level Billing Preference Setup Process 
>> One has to Send a fax of Credit Card Details along with a dully filled 
>> form. We have faxed card details and form to the given number, so far 
>> nobody has replied.. and also, Continue Button is not working in it. 
>>
>> Amit Jivani
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


AS a new developer i have some question about api

2013-09-24 Thread seohelp001
i did it as following:
*at  first,* I need to create a MCC test account and then apply for a API;
and i also need to get  a *API Access* from https:
//code.google.com/apis/console/#project:#:access  like "Client ID:  
Client secret: "

*second*,i must open auth.ini and insert  *developerToken  userAgent*  *
client_id*  *client_secret*  to  get refresh_token  but what's  *userAgent *
?*

**after that**, *i run *GetAccountAlerts.php**  * it  says*   **{ Notice**: 
Failed to load response into DOM: DOMDocument::loadXML()  on 
adwords\src\Google\Api\Ads\Common\Lib\AdsSoapClient.php on line **248 }  
and echo **An error has occurred: SOAP-ERROR: Encoding: string '\xc9...' is 
not a valid utf-8 string

*am i wrong in whitch step ?*

*ask for help ,thx*
** ** * *
* *
* 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Is there an adwords API for testing keywords match types?

2013-09-24 Thread Hua Ai
Hello!  I'm asking a more general match type question. I don't know a 
better place to ask... so please excuse me if this is not a topic of 
interest for this forum.  I've read Adwords' match type definitions here (
https://support.google.com/adwords/answer/2497836?hl=en),  but for broad 
match type, I'm not quite sure how exactly synonyms will be considered. So 
I'm wondering if there is an API to test keywords match types. For example, 
if I have a typed query TQ, and a keyword KW, is there a function like 
BroadMatch(TQ, KW) that can return True/False on whether TQ can match onto 
KW?

Thank you!
Hua

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Test Account: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'']

2013-09-24 Thread edward
I had this same problem as well. 
My Customer ID: 235-344-0208
Test Customer ID:493-907-8910
Could you please also tell me what information/account info is needed in 
the auth.ini file or how to set the  following, since the those concept are 
confusing

$user = new AdWordsUser();
$user->SetOAuth2Info(array(
"client_id" => OAUTH_CLIENT_ID,
"client_secret" => OAUTH_CLIENT_SECRET,
"access_token" => OAUTH_ACCESS_TOKEN,
"refresh_token" => OAUTH_REFRESH_TOKEN
));


On Monday, 9 September 2013 00:58:14 UTC+8, Raul Gomez wrote:
>
> Trying to connect to the Google AdWords API and when running *
> addCampaigns.php* from the PHP API examples, I get the following error:
>
> An error has occurred:* [QuotaCheckError.INCOMPLETE_SIGNUP @ ; 
> trigger:'']*
>
>
> The clientCustomerId of the test account is:* 457-878-3081*
>
> Which is the problem? Can anyone help me?
>
> Thank you
>
>  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Authorization Denied OAuth 2

2013-09-24 Thread Takeshi Hagikura (AdWords API Team)
Hi, 

Could you share more details?

What account did you use for OAuth2 authentication?
Against what account are you trying to pull the report? 

Basically the account you are trying to pull the report should be under the 
MCC account with which you authenticated using OAuth2. 

Best,
- Takeshi, AdWords API Team

On Saturday, September 21, 2013 5:56:32 AM UTC+9, Nicky Dias wrote:
>
> Hi, I'm using v201306 and OAuth 2 for the adwords, console application, 
> but when I use method DownloadClientReport doesn't work.
>
> Error: AuthorizationError.USER_PERMISION_DENIED
>
> Somebody Help me?
>
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Ad Params in Reports

2013-09-24 Thread Takeshi Hagikura (AdWords API Team)
Hi Ori,

At this moment, it's not available to retrieve ad params through reports. 
It's on the roadmap, when it becomes available, we'll announce it through 
normal channels (blog, G+ page release note, etc)

Best,
- Takeshi, AdWords API Team

On Saturday, September 21, 2013 9:07:53 PM UTC+9, Ori Arditi wrote:
>
> Hello
>
> Is it still impossible to fetch the ad params (param1 & param2) in the 
> keywords performance report or any other report?
> Are there any plans for it?
>
> Thank you
>
> This e-mail, as well as any attached document, may contain material which 
> is confidential and privileged and may include trademark, copyright and 
> other intellectual property rights that are proprietary to Kenshoo Ltd, 
>  its subsidiaries or affiliates ("Kenshoo"). This e-mail and its 
> attachments may be read, copied and used only by the addressee for the 
> purpose(s) for which it was disclosed herein. If you have received it in 
> error, please destroy the message and any attachment, and contact us 
> immediately. If you are not the intended recipient, be aware that any 
> review, reliance, disclosure, copying, distribution or use of the contents 
> of this message without Kenshoo's express permission is strictly prohibited.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Ad Group Mobile Bid Modifier in Reports

2013-09-24 Thread Paul Matthews (AdWords API Team)
Hi Ori,

Currently there is no ADGROUP_PLATFORM_TARGET_REPORT available. To ensure 
you don't miss any newly released features, signup to the the AdWords API 
blog.

Regards,

- Paul, AdWords API Team.

On Saturday, 21 September 2013 11:52:07 UTC+1, Ori Arditi wrote:
>
>
> Hello
>
> https://developers.google.com/adwords/api/docs/reference/#v201306
>
> Recent API release has a new report type called 
> CAMPAIGN_PLATFORM_TARGET_REPORT for the mobile bid adjustment. 
> Is there a way to fetch the mobile bid adjustment for *ad groups*?
> Are there any plans for it?
>
> Thanks you
>
> This e-mail, as well as any attached document, may contain material which 
> is confidential and privileged and may include trademark, copyright and 
> other intellectual property rights that are proprietary to Kenshoo Ltd, 
>  its subsidiaries or affiliates ("Kenshoo"). This e-mail and its 
> attachments may be read, copied and used only by the addressee for the 
> purpose(s) for which it was disclosed herein. If you have received it in 
> error, please destroy the message and any attachment, and contact us 
> immediately. If you are not the intended recipient, be aware that any 
> review, reliance, disclosure, copying, distribution or use of the contents 
> of this message without Kenshoo's express permission is strictly prohibited.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.