Call to undefined method Google\AdsApi\AdWords\v201710\cm\AdGroupAdOperation::getExemptionRequest()

2018-01-16 Thread desk
Hi

I use this 
code 
https://developers.google.com/adwords/api/docs/samples/php/error-handling#handle-policy-violation-errors

But today I got it mistake - Call to undefined method 
Google\AdsApi\AdWords\v201710\cm\AdGroupAdOperation::getExemptionRequest()

Why ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/5b7558c6-60fd-45bb-b272-3c9f31fb2da8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdGroupAdService mutate return NULL

2018-01-12 Thread desk
I found the cause of the problem.

It was - $session->setValidateOnly(true);

SOAP response was NULL ! Nothing! 

But when I change to $session->setValidateOnly(false);

I take correctly SOAP response - 
object(Google\AdsApi\AdWords\v201710\cm\AdGroupAdReturnValue)#1309 
(4) { ...

Although a few months ago everything worked.

Thanks

четверг, 11 января 2018 г., 20:22:43 UTC+2 пользователь Bharani Cherukuri 
(AdWords API Team) написал:
>
> Hello, 
>
> You code snippet looks fine. However, to investigate the issue further, 
> could you enable logging and share us the complete SOAP request and 
> response logs along with the clientCustomerId, so I can take a look? Please 
> use *Reply privately to author* option to provide the details. You may 
> also refer to this PHP code sample 
> 
>  as 
> a reference. 
>
> Regards,
> Bharani, AdWords API Team
>
> On Thursday, January 11, 2018 at 10:10:27 AM UTC-5, de...@ubc-corp.com 
>  wrote:
>>
>> Hi,
>>
>> Please, check out my code:
>>
>> $operations = [];
>> $expandedTextAd = new ExpandedTextAd();
>> $expandedTextAd->setHeadlinePart1($HeadlinePart1); 
>> $expandedTextAd->setHeadlinePart2($HeadlinePart2); 
>> $expandedTextAd->setDescription($Description); 
>> $expandedTextAd->setFinalUrls([$FinalUrl]);
>> $adGroupAd = new AdGroupAd();
>> $adGroupAd->setAdGroupId($AdGroupId);
>> $adGroupAd->setAd($expandedTextAd);
>> $adGroupAd->setStatus(AdGroupAdStatus::PAUSED);
>> $operation = new AdGroupAdOperation();
>> $operation->setOperand($adGroupAd);
>> $operation->setOperator(Operator::ADD);
>> $operations[] = $operation;
>> $result = $adGroupAdService->mutate($operations);
>>
>>
>>
>> But $result is NULL
>>
>>
>> Why?
>>
>>
>> Thanks
>>
>>
>>   
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/b900f343-97f4-4ebd-94fe-973bb294c25b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdGroupAdService mutate return NULL

2018-01-11 Thread desk
Hi,

Please, check out my code:

$operations = [];
$expandedTextAd = new ExpandedTextAd();
$expandedTextAd->setHeadlinePart1($HeadlinePart1); 
$expandedTextAd->setHeadlinePart2($HeadlinePart2); 
$expandedTextAd->setDescription($Description); 
$expandedTextAd->setFinalUrls([$FinalUrl]);
$adGroupAd = new AdGroupAd();
$adGroupAd->setAdGroupId($AdGroupId);
$adGroupAd->setAd($expandedTextAd);
$adGroupAd->setStatus(AdGroupAdStatus::PAUSED);
$operation = new AdGroupAdOperation();
$operation->setOperand($adGroupAd);
$operation->setOperator(Operator::ADD);
$operations[] = $operation;
$result = $adGroupAdService->mutate($operations);



But $result is NULL


Why?


Thanks


  

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/befc0def-de3b-43e5-8c9c-9a0eeefe0c56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: rateScope

2017-10-13 Thread desk
Hello.

Okay. I think I'm starting to understand. However, please clarify.

I have basic access. My limit is 10,000 operations a day.

Every day I plan to add one unique advertising campaign to 100,000 
different Google AdWords Accounts.

I can not do it ? Because I will exceed my limit?

Regards,
Andrii

четверг, 12 октября 2017 г., 22:21:09 UTC+3 пользователь Bharani Cherukuri 
(AdWords API Team) написал:
>
> Hello, 
>
> There are various kinds of rate limits in AdWords API. The operational 
> limit 
> 
>  is 
> based on the access level of the developer token, and doesn't fluctuate.The 
> number of operations performed using your developer token will be counted 
> towards the daily quota associated with your developer token. 
>
> Other than the operational limit, all other rate limits may fluctuate. If 
> an application makes a high number of requests per second on a single 
> AdWords account, the AdWords API Server may return a RateExceededError for 
> exceeding rate limit within the Account scope. Rate limit across Account 
> rate scope is metered on all requests to a single AdWords account - no 
> matter which developer token was used to make the request. This rate limit 
> can fluctuate based on different variables, including server load.
>
> Thanks,
> Bharani, AdWords API Team
>
> On Wednesday, October 11, 2017 at 8:40:32 AM UTC-4, de...@ubc-corp.com 
> wrote:
>>
>> Hello.
>>
>> I'm reading this page - 
>> https://developers.google.com/adwords/api/docs/guides/rate-limits
>>
>> I have an application with basic access.
>>  
>> Other users give access to my application to their Google AdWords Account.
>>
>> My app loads ready-made ad campaigns to other users.
>>
>> My Question:
>>
>> Whose operations are spent when my application adds advertising campaigns 
>> to the Google AdWords account that belongs to my client? ACCOUNT or 
>> DEVELOPER 
>> ?
>>
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/1582e64e-78d2-462f-a35d-f1ec0e8f3b2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: rateScope

2017-10-12 Thread desk
Hello

I did not understand anything, unfortunately. :(

Answer my question, please: Yes or no.

I use my developer token for queries. (DEVELOPER)

My app adds ad campaigns to an absolutely third-party Google AdWords 
Account. The Google AdWords Account, which granted access to my 
application. 

As far as I understand, all operations are performed at the expense of an 
absolutely third-party Google AdWords Account. (ACCOUNT)

Is it true that in this case, all transactions are performed at the expense 
of absolutely third-party Google AdWords Account? ACCOUNT level ? Yes or No 
?

Regards, Andrii


среда, 11 октября 2017 г., 22:03:25 UTC+3 пользователь Bharani Cherukuri 
(AdWords API Team) написал:
>
> Hello, 
>
> The rate limits are calculated based on the API calls made with the 
> associated Developer token. If the operations using the developer token 
> exceeds a certain limit, then the RateExceededError 
> 
>  is 
> triggered with the rateScope as DEVELOPER. The operation will be 
> considered in the ACCOUNT level rate limit for the client account, as that 
> is the combined QPS at the account level. If the manager account is 
> managing several accounts, of which multiple client accounts are using the 
> same developer token making several requests, all these requests are 
> calculated against the daily quota limit. A get operation is counted as 
> one operation, regardless of the number of results objects and for a mutate 
> operation, each mutated item counts as one operation. You may refer to 
> the rate sheet  
> document 
> on how the API requests are calculated towards to the daily limit.
>
> Let me know if you have any other questions.
>
> Thanks,
> Bharani, AdWords API Team
>
> On Wednesday, October 11, 2017 at 8:40:32 AM UTC-4, de...@ubc-corp.com 
> wrote:
>>
>> Hello.
>>
>> I'm reading this page - 
>> https://developers.google.com/adwords/api/docs/guides/rate-limits
>>
>> I have an application with basic access.
>>  
>> Other users give access to my application to their Google AdWords Account.
>>
>> My app loads ready-made ad campaigns to other users.
>>
>> My Question:
>>
>> Whose operations are spent when my application adds advertising campaigns 
>> to the Google AdWords account that belongs to my client? ACCOUNT or 
>> DEVELOPER 
>> ?
>>
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/69a73adb-917e-40e8-8e95-10d3471fb15c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


rateScope

2017-10-11 Thread desk
Hello.

I'm reading this page - 
https://developers.google.com/adwords/api/docs/guides/rate-limits

I have an application with basic access.
 
Other users give access to my application to their Google AdWords Account.

My app loads ready-made ad campaigns to other users.

My Question:

Whose operations are spent when my application adds advertising campaigns 
to the Google AdWords account that belongs to my client? ACCOUNT or DEVELOPER 
?




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/83bb17dc-f5d0-4b69-9618-408a3637a812%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PolicyViolationError.POLICY_ERROR - How is this possible?

2017-06-22 Thread desk
Hi. Please, help me.

I'm using a check. As written in the documentation.

However, the ad is not added anyway! I do not understand why.

Look at my code, please.

What could be the reason?

$session->setValidateOnly(true);
$adWordsServices = new AdWordsServices();
$adGroupAdService = $adWordsServices->get($session, 
AdGroupAdService::class);
$operations = [];
$expandedTextAd = new ExpandedTextAd();
$expandedTextAd->setHeadlinePart1($HeadlinePart1);
$expandedTextAd->setHeadlinePart2($HeadlinePart2);
$expandedTextAd->setDescription($sourceAdText); 
$expandedTextAd->setFinalUrls([$sourceAdHref]);

$adGroupAd = new AdGroupAd();
$adGroupAd->setAdGroupId($adsGroupsSync[$sourceAdGroupId]);
$adGroupAd->setAd($expandedTextAd);
$adGroupAd->setStatus(AdGroupAdStatus::PAUSED);

 $operation = new AdGroupAdOperation();
 operation->setOperand($adGroupAd);
 $operation->setOperator(Operator::ADD);
 $operations[] = $operation;
 
 
try {
// Try creating an ad group ad on the server.
$result = $adGroupAdService->mutate($operations);
} catch (ApiException $apiException) {
$operationIndicesToRemove = [];
foreach ($apiException->getErrors() as $error) {
// Get the index of the failed operation from the 
error's field path
// elements.
$fieldPathElements = $error->getFieldPathElements();
$firstFieldPathElement = null;
if ($fieldPathElements !== null && 
count($fieldPathElements) > 0) {
$firstFieldPathElement = $fieldPathElements[0];
}
if ($firstFieldPathElement === null
|| $firstFieldPathElement->getField() !== 
'operations'
|| $firstFieldPathElement->getIndex() === null) {
// If the operation index is not present on the 
first error field
// path element, then there's no way to determine 
which operation to
// remove, so simply throw the exception.
throw $apiException;
}
$operationIndex = $firstFieldPathElement->getIndex();
$operation = $operations[$operationIndex];
if ($error instanceof PolicyViolationError) {
if ($error->getIsExemptable() === true) {
$operation->setExemptionRequests(
[new ExemptionRequest($error->getKey())]);
} else {
$operationIndicesToRemove[] = $operationIndex;
}
} else {
$operationIndicesToRemove[] = $operationIndex;
}
}
$operationIndicesToRemove = 
array_unique($operationIndicesToRemove);
rsort($operationIndicesToRemove, SORT_NUMERIC);
foreach ($operationIndicesToRemove as $operationIndex) {
unset($operations[$operationIndex]);
}
}

if (count($operations) > 0) {
// Make the mutate request to really add an ad group ad.
$session->setValidateOnly(false);

try {
$result = $adGroupAdService->mutate($operations);
} catch (ApiException $e) {
$errors = $e->getErrors();
if (count($errors) > 0) {
foreach ($errors as $error) {
// todo
}
}
}
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/ad539448-5053-4012-a0d6-85d06b2aa5df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


POLICY_ERROR

2017-05-30 Thread desk
Hello.

I mutate ad.
"Qlik & IBM Cognos Analytics"

But I get PolicyViolationError.POLICY_ERROR

I read this: 
https://groups.google.com/forum/?hl=en=1#!searchin/adwords-api/policy$20violation|sort:relevance/adwords-api/eUL6yZ3tw64/u7h9S7HmDQAJ

I'm using this code 
https://developers.google.com/adwords/api/docs/samples/php/error-handling#handle-policy-violation-errors

But the error does not disappear!

IsExemptable = true. I checked.

What can be wrong ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/e5c1477a-1cd1-4646-8a88-ece2f33b3669%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


database with countries and cities in Russian

2017-05-24 Thread desk
Hello.

Https://developers.google.com/adwords/api/docs/appendix/geotargeting - Here 
I can get a database with countries and cities in English.

And how do I get this database, but in Russian?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/864dfdf1-ad32-457c-a27d-b55d5572de78%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Delivery Status Notification (Failure) from adwordsapi-tok...@google.com

2017-05-04 Thread desk
Hi.
We received a message today:
"Hi,
We have not heard back from you. If you are still interested in the AdWords 
API, please address the outstanding issues in our previous email. If you 
are no longer interested in the AdWords API token or if we do not hear from 
you in 7 days, we will go ahead and close your application."

But we did not receive the "previous" letter.
How do we get it? What needs to be corrected?
We are very much looking forward to the letter. 

ID 870-694-2217
help me please

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/23274927-8b6e-4192-ac38-d9db7c039800%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Check for basic API.

2017-04-25 Thread desk
Ivan, hello.

We are experiencing.
We did not receive a response either after sending the form, or yesterday.
We are confused and do not understand what to do next.

2 days have already passed after submitting the form.

Regards.

вторник, 25 апреля 2017 г., 12:26:15 UTC+3 пользователь Ivan Bautista 
написал:
>
> Hi,
>
> Please be informed that your concern, which you also raised yesterday via 
> this forum post 
> ,
>  
> was already forwarded yesterday and is now being handled by the AdWords 
> Compliance team. It's better that you continue your discussion with them as 
> they are more equipped to handle your concerns.
>
> Regards,
> Ivan 
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/0798049b-debe-4d39-97fb-8c49f631e8ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Check for basic API.

2017-04-25 Thread desk
Hello.

We sent a request for basic API access on April 19, 2017.

We did not even receive a notification to the email that the form was 
successfully sent. How can this be checked?

Please let us know.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/c1830fb7-3990-4537-9deb-f2522ae54543%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: basic API

2017-04-24 Thread desk
Ivan, hello.

Did you receive my private letter to you?

Regards

понедельник, 24 апреля 2017 г., 10:33:10 UTC+3 пользователь Ivan Bautista 
написал:
>
> Hi,
>
> The application process usually takes within 2 business days 
> 
>  before 
> you receive a response from the AdWords Compliance team. To further 
> investigate on your issue, could you reply to us privately (using *reply 
> privately to author* option) with your MCC account id?
>
> Regards,
> Ivan
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/217bbd44-0560-4038-a4b3-e6a6e3e33877%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


basic API

2017-04-24 Thread desk
Hello.

We sent a request for basic API access on April 19, 2017.

How long does it take for an answer from Google?

We did not even receive a notification to the email that the form was 
successfully sent. Did google receive it? How can this be checked?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
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/83f1c727-73aa-4070-8ed2-3d84b24090d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.