Google Ads API authentication error. No customer found for token with basic access level

2019-03-27 Thread Сергей Хоменко
Hi. I have an account with access to Ads API and developer token, approved 
and having basic access level. 

In documentation it means, that i have an access to production account.

I have built an application to generating reports for campaigns, but i 
can't auhtenticate user. API throws AuthorizationError.NO_CUSTOMER_FOUND  
error.

I use PHP 7.1.14. Inside the $token i have a response from google oauth 
page.

Here is how i do request for get campaigns list.

$oAuthCreds = (new OAuth2TokenBuilder())
 ->withClientId(App::CLIENT_ID)
 ->withClientSecret(App::CLIENT_SECRET)
 ->withRefreshToken($token->refresh_token)
 ->build();
 $session = (new AdWordsSessionBuilder())
 ->withOAuth2Credential($oAuthCreds)
 ->withDeveloperToken('X')
 ->build();

 $services = new AdWordsServices();

 /** @var CampaignService $campaignService */
 $campaignService = $services->get($session, CampaignService::class);
 $selector = new Selector();
 $selector->setFields(['Id', 'Name']);
 $selector->setOrdering([new OrderBy('Name', SortOrder::ASCENDING)]);
 $selector->setPaging(new Paging(0, 20));

 /** @var CustomerService $customerService */
 $customerService = $services->get($session, CustomerService::class);

 try {
 $campaignList = $campaignService->get($selector)->getEntries();

 } catch (Throwable $e) {
 echo $e->getMessage();
 }

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/2583aba9-e4ab-4450-a621-b24cdf5b1d8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AuthorizationError.NO_CUSTOMER_FOUND with basic access token

2019-03-27 Thread Сергей Хоменко
Hi. I have an account with access to Ads API and developer token, approved 
and having basic access level. 

In documentation it means, that i have an access to production account. I 
built an application to generating reports for campaigns, but i can't 
auhtenticate user. API throws AuthorizationError.NO_CUSTOMER_FOUND  error.

I use PHP 7.1.14. Inside the
  
$token

i have a response from google oauth page.

Here is how i do request for get campaigns list: 

$oAuthCreds = (new OAuth2TokenBuilder())
->withClientId(App::CLIENT_ID)
->withClientSecret(App::CLIENT_SECRET)
->withRefreshToken($token->refresh_token)
->build();

$session = (new AdWordsSessionBuilder())
->withOAuth2Credential($oAuthCreds)
->withDeveloperToken('XXX')
->build();

$services = new AdWordsServices();

/** @var CampaignService $campaignService */
$campaignService = $services->get($session, CampaignService::class);
$selector = new Selector();
$selector->setFields(['Id', 'Name']);
$selector->setOrdering([new OrderBy('Name', SortOrder::ASCENDING)]);
$selector->setPaging(new Paging(0, 20));

/** @var CustomerService $customerService */
$customerService = $services->get($session, CustomerService::class);

try {
$campaignsList = $campaignService->get($selector)->getEntries();
} catch (Throwable $e) {
echo $e->getMessage();
}



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/dffa8c90-1a1e-495b-a735-adbabd51c3ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AuthorizationError.NO_CUSTOMER_FOUND on basic access token

2019-03-27 Thread Сергей Хоменко
Hi. I have an account with access to Ads API and developer token, approved 
and having basic access level. 

In documentation it means, that i have an access to production account.

I have built an application to generating reports for campaigns, but i 
can't auhtenticate user. API throws AuthorizationError.NO_CUSTOMER_FOUND 
 error.

I use PHP 7.1.14. Inside the $token i have a response from google oauth 
page.

Here is how i do request for get campaigns list.

$oAuthCreds = (new OAuth2TokenBuilder())
->withClientId(App::CLIENT_ID)
->withClientSecret(App::CLIENT_SECRET)
->withRefreshToken($token->refresh_token)
->build();

$session = (new AdWordsSessionBuilder())
->withOAuth2Credential($oAuthCreds)
->withDeveloperToken('')
->build();

$services = new AdWordsServices();

/** @var CampaignService $campaignService */
$campaignService = $services->get($session, CampaignService::class);
$selector = new Selector();
$selector->setFields(['Id', 'Name']);
$selector->setOrdering([new OrderBy('Name', SortOrder::ASCENDING)]);
$selector->setPaging(new Paging(0, 20));

/** @var CustomerService $customerService */
$customerService = $services->get($session, CustomerService::class);

try {
$campaignList = $campaignService->get($selector)->getEntries();

} catch (Throwable $e) {
echo $e->getMessage();
}


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/dfdce526-4b35-4cc4-907a-5e4ca4ac7a92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads API V1.0 - Occasional Internal Error

2019-03-27 Thread jason
Hi Google Ads team,

I've noticed I receive an Internal Error message sometimes (when repeating 
the same request).

For example, sample query:

SELECT campaign.id FROM campaign

Sometimes, this query will work, other times I'll get the error. See below 
for logs:

[2019-03-27 20:00:59] aasdasda.DEBUG: Request made: Host: 
"googleads.googleapis.com", Method: 
"/google.ads.googleads.v1.services.GoogleAdsService/Search", 
ClientCustomerId: X, RequestId: "XO6fdAoM-69mNXJ_T0E-xw", IsFault: 1, 
FaultMessage: "None" [] []
[2019-03-27 20:00:59] aasdasda.DEBUG: Request --- Method Name: 
/google.ads.googleads.v1.services.GoogleAdsService/Search Host: 
googleads.googleapis.com Headers: { "x-goog-api-client": "gl-php\/7.3.2 
gapic\/ gax\/0.38.0 grpc\/1.19.0", "developer-token": "REDACTED",
 "login-customer-id": "X" } Request: {"customerId":"X","query":"SELECT 
campaign.id, campaign.name FROM campaign","pageSize":100}  Response --- 
Headers: { "request-id": "XO6fdAoM-69mNXJ_T0E-xw", "date": "Wed, 27 
Mar 2019 20:00:59 GMT", "alt-svc": "quic=\":443\"; ma=2592000; 
v=\"46,44,43,39\"" }  Fault --- Status code: 13 Details: Internal error 
encountered. Failure: {} [] []

   Google\ApiCore\ApiException  : {
"message": "Internal error encountered.",
"code": 13,
"status": "INTERNAL",
"details": [
{
"@type": "request-id",
"data": "XO6fdAoM-69mNXJ_T0E-xw"
}
]
}

Regards,


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/977c3029-a1be-417b-9414-19a328ef8ecd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords API returning empty response on account when no campaigns are created

2019-03-27 Thread Manuel Olmedo
Hi all:

When I try to fetch adwords api account performance report from an empty 
account, it returns empty response.

This is my AWQL query:

SELECT 
AccountCurrencyCode,AccountTimeZone,ExternalCustomerId,CustomerDescriptiveName 
FROM ACCOUNT_PERFORMANCE_REPORT WHERE ExternalCustomerId = ''


This happens in a just created account, I'm not able to retrieve details 
such as timezone.

Im using PHP SDK.

Thanks in advance

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/7ae5af1a-8b1e-4403-a923-ef26a7338399%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [8-5077000025924] get reports from different accounts

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Apologies for the confusion. In AdWords API
, the
DEVELOPER_TOKEN_NOT_APPROVED
  
occurs

when you try to use an unapproved developer token to make calls in a
production account. Take note that an unapproved developer token can only
make calls against a test Google Ads account. To be able to make calls
using your production account, you should apply for basic access as shown
in this guide
.
The compliance team will then contact you within 2 business days to update
you on the status. Once the access has been approved, you may then try to
make an API call using your production account.

Let me know if you have any further concerns.


Regards,
Dave Paurillo
Google Ads API Team


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

On 03/27/19 19:26:37 uatetrac...@gmail.com wrote:

  Thank you for the answer.
I have 2 questions.
You give me a link to google ads but I already installed google adwords
(installed library and get refresh_token). [1] Can I do all by google
adwords library?
I already tried the first API call but have the answer:
"[QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @; trigger: ''] '. I
used the developer token with *Access level - Test Account*.
So, now I'm writing to apply developer token, but do not understand [2]
what I have to write in documentation in part *API Services Called.*

середа, 27 березня 2019 р. 09:42:08 UTC+2 користувач
googleadsapi-forumadvisor написав:

Hi,

Thank you for reaching out. If you want to use the Google Ads API
 to generate
reports, first you have to apply for a developer token if you don't already
have one by following this guide
.
Then, you should download a client library
, set up
OAuth2 credentials by following this guide
  
and

get your refresh token by following this guide

.

Once your setup has been completed, you may then make your first API call
using your test account. You may check this guide
 for more
information about the access level.

Also, you should take note that test accounts can't be associated to a
production account. If you want to make an API call to a production
account, you should apply for basic access
.
The Compliance Team will contact you within 2 business days for its status.
Once access has been approved, you may then make an API call to your
production Google Account.

Regards,
Dave Paurillo
Google Ads API Team


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

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

Take Survey


Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
On 03/26/19 22:14:40 uatet...@gmail.com wrote:

Hi!
We want to get reports from Google Adwords by API. Get reports from account
of our clients save this data and build special reports for clients for
understand (show) efectivity ads.
Please, help me to understand how it have to work.
If I right understand:
1. i have to register manage account in google adwords
2. for testing I have to register test account
3. then connect my test account to non-test account (how i can do it by
API?)

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

Re: Create customer account using by ads API

2019-03-27 Thread Myung Ju Park
Hello, Sai Teja.
Thanks for your reply.

I already mentioned, Alice is not have grant to access of client customer 
ID Service.
Because Alice is just customer and own client customer ID is have not yet.
I want to making service like to below flow.

oAuth login (Alice)
-> create account in Google Ads by Alice's account. (automation) 
-> invite Alice's created Google Ads account to this Service
-> create Google merchant center Account by Alice's account. (automation, 
if approved to inviting from this Service) 
-> link to between Alice's Google Ads account and merchant center account.
-> Alice is able to Google Ads creating, modifying, stopping and all of 
them about Google Ads in this Service.

Do you have an idea??

Best regards.

2019년 3월 28일 목요일 오전 2시 4분 40초 UTC+9, googleadsapi-forumadvisor 님의 말:
>
> Hello Myung,
>
> I see that you are trying to create an account and facing 
> USER_PERMISSION_DENIED. Usually you face USER_ 
> 
> PERMISSION_DENIED 
> 
>  
> error when your OAuth credentials are for a user who does not have access 
> to the client customer ID specified or any of its manager accounts. Does 
> Alice's email address have access to the client customer Id mentioned in 
> the API call? You could share the Alice's email address and the Client 
> Customer Id passing in the request to investigate further. You could use 
> reply privately to the author option while sharing the information 
> requested.
>
> Regards,
> Sai Teja, Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/9932b928-eeb6-45b1-bcc6-300c4191248a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: UNEXPECTED_INTERNAL_API_ERROR when adding keywords to SharesetSet

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

I've reported this to the team that maintains that service and will provide
an update as soon as I have more information.

In the meantime, if you happen to see that this error has subsided, please
let me know.

Thanks,
Josh, Google Ads API Team

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

On 03/27/19 16:08:56 r...@searchkings.ca wrote:

Just chiming in to say you aren't alone with this issue. We started
encountering the same thing as of ~4pm EST yesterday. Reached out to email
support, no response yet.


On Wednesday, March 27, 2019 at 8:22:57 AM UTC-4, Stefano Fontana wrote:

Howdy,

Since a couple of days we've been getting "UNEXPECTED_INTERNAL_API_ERROR"
whenever we try to add keywords to a shared set.
If there are more than 1000 keywords in a single slice the failure happens
almost always so retrying doesn't help.

Please find attached the request to the SharedSetService.

The response to that is:
http://schemas.xmlsoap.org/soap/envelope/;>\n
\n\n  soap:Server\n
InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @
com.google.ads.api.services.common.error.InternalApiError.
init(InternalApiErro\n  \n
https://adwords.google.com/api/adwords/cm/v201809
">\n  InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @
com.google.ads.api.services.common.error.InternalApiError.
init(InternalApiErro\n
ApiException\n
http://www.w3.org/2001/XMLSchema-instance;
xsi:type="InternalApiError">\n\n
\nInternalApiError.
UNEXPECTED_INTERNAL_API_ERROR\n
InternalApiError\n 
UNEXPECTED_INTERNAL_API_ERROR\n

\n\n  \n
\n  \n\n'
WARNING:googleads.soap:Error summary: {'faultMessage':
'InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro',
'serviceName': 'SharedCriterionService', 'methodName': 'mutate'}

Note that we tried this in both the test and normal Google Ads accounts,
every time creating a new SharedSet.


It may be related to https://groups.google.com/forum/#!searchin/adwords-api/
UNEXPECTED_INTERNAL_API_ERROR%7Csort:date/adwords-api/H8XxV_
1gRUw/szsoyKbICQAJ


Thank for taking a look!


Cheers

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/2176ce13-433a-48a8-875f-441d2839dbe4%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/1a0kjh808atqds001hnv58z64mjid9n74o30c1g68qj8dpl%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating ad in adgroup

2019-03-27 Thread Frode Storhaug
Latest update; seems to be working after updating 
to Google.Ads.GoogleAds.Services.V1 (from v0 to v1  in both framework 
and https://googleads.googleapis.com/v1)
Will update more after some more testing

On Tuesday, March 26, 2019 at 9:59:30 PM UTC+1, Frode Storhaug wrote:
>
> We have created a job that automatically generates ads based on posts in a 
> json feed.  Until recently this worked as it should, but last week (or so) 
> it stopped working. The campaign and adgrops are created, but the ad fails 
> in MutateAdGroupAdsAsync
>
> With the following exception
>
> Error location : Resource was not found
>
> Message
> "Status(StatusCode=InvalidArgument, Detail=\"Request contains an invalid 
> argument.\")"
>
> Request id : lQNBe_lmdyan9suAPouxIQ
>
> Did something change in the api ? 
>
> Thanks for any help
>
> Regards
> Frode
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/78175e9f-da52-4c22-942f-82376f5465df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: creating ad in adgroup

2019-03-27 Thread Frode Storhaug

Se attached screenshot, no clue in the debug info on what is missing or 
wrong

Frode

On Tuesday, March 26, 2019 at 9:59:30 PM UTC+1, Frode Storhaug wrote:
>
> We have created a job that automatically generates ads based on posts in a 
> json feed.  Until recently this worked as it should, but last week (or so) 
> it stopped working. The campaign and adgrops are created, but the ad fails 
> in MutateAdGroupAdsAsync
>
> With the following exception
>
> Error location : Resource was not found
>
> Message
> "Status(StatusCode=InvalidArgument, Detail=\"Request contains an invalid 
> argument.\")"
>
> Request id : lQNBe_lmdyan9suAPouxIQ
>
> Did something change in the api ? 
>
> Thanks for any help
>
> Regards
> Frode
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/cfc59065-b6b8-4fec-95c9-d8d7b9569d59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Internal error occurred when getting feed mappings using google ads api

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Wang,

Regret the delay in getting back to you. I have followed up with the team
requesting an update. Our Engineering team is currently looking into this.
I will keep you posted on the updates.

Thanks,
Bharani, Google Ads API Team

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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/ijlio2sq88010cv62o0002333sz6omj2cpm6go30c1g68qjed1o%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: UNEXPECTED_INTERNAL_API_ERROR when adding keywords to SharesetSet

2019-03-27 Thread Ross Lavery
Just chiming in to say you aren't alone with this issue. We started 
encountering the same thing as of ~4pm EST yesterday. Reached out to email 
support, no response yet.


On Wednesday, March 27, 2019 at 8:22:57 AM UTC-4, Stefano Fontana wrote:
>
> Howdy,
>
> Since a couple of days we've been getting "UNEXPECTED_INTERNAL_API_ERROR" 
> whenever we try to add keywords to a shared set.
> If there are more than 1000 keywords in a single slice the failure happens 
> almost always so retrying doesn't help. 
>
> Please find attached the request to the SharedSetService.
>
> The response to that is:
> http://schemas.xmlsoap.org/soap/envelope/;>\n  
> \n\n  soap:Server\n  
> InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
> com.google.ads.api.services.common.error.InternalApiError.init(InternalApiErro\n
>   
> \nhttps://adwords.google.com/api/adwords/cm/v201809;>\n  
> InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
> com.google.ads.api.services.common.error.InternalApiError.init(InternalApiErro\n
>   
> 
> ApiException\n  
> http://www.w3.org/2001/XMLSchema-instance; 
> xsi:type="InternalApiError">\n\n
> \n
> InternalApiError.UNEXPECTED_INTERNAL_API_ERROR\n  
>   InternalApiError\n
> UNEXPECTED_INTERNAL_API_ERROR\n  \n  
>   \n  \n\n  
> \n\n'
> WARNING:googleads.soap:Error summary: {'faultMessage': 
> 'InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
> com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro',
>  
> 'serviceName': 'SharedCriterionService', 'methodName': 'mutate'}
>
> Note that we tried this in both the test and normal Google Ads accounts, 
> every time creating a new SharedSet.
>
>
> It may be related to 
> https://groups.google.com/forum/#!searchin/adwords-api/UNEXPECTED_INTERNAL_API_ERROR%7Csort:date/adwords-api/H8XxV_1gRUw/szsoyKbICQAJ
>
>
> Thank for taking a look!
>
>
> Cheers
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/2176ce13-433a-48a8-875f-441d2839dbe4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Why integrationCode = null when getting audience???

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Manh,

Looks like the IntegrationCode

field should be set when creating the userlist. If you think the field
should present, could you please share the client customer id of the
account where these uselists are created and the user list id to
investigate further?

Regards,
Sai Teja, Google Ads API Team


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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/186smjo1gvk0kk001acb5kz6smj4dhk6oo30c1g68qjedhp%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: ad_group_criterion_error: Subdivided listing groups must have an "others" case.

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Didier,

The "others" node is always required for every level of the tree. Please
make sure you are adding others node at each level to form a complete tree.

You should be able to create the hotel campaign with manual CPC bidding
strategy and I was able to test it in my environment. In the code snippet
shown here
  
change

the PercentCpc to ManualCPC with enhancedCPCenabled field to false and can
remove the cpcBidCeilingMicroAmount as they are not required for ManualCpc
strategy. Please give it a try and let me know if you have any further
questions.

If you are still facing any issues please share the entire logs by enabling
logging to DEBUG as mentioned here
. You could use reply
privately to the author option while sharing the information requested.

Regards,
Sai Teja, Google Ads API Team


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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/00d12jucp6g1a40016fto4w70mjachg68o30c1g68qjge1l%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Adding Hotel AdGroupCriterion without bidding value

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Didier,

The field PercentCpcBidMicros is a required field when you use PercentCpc
bidding strategy and should be set while creating the listing groups. You
could refer the code sample mentioned here
  
for

reference. Please let me know if you have any further questions.

Regards,
Sai Teja, Google Ads API Team


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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/1a0kjh808m5lbo001hea32z74mjed1k70o30c1g68qjac9h%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Operations on different kinds of entities in a single request

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Yes, the same applies for Google Ads API. You will only be able to batch
same kind of operation on the same type on entities in one request. Please
read more about operations and batching them here

.

Thanks,
Sreelakshmi, Google Ads API Team

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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/00d12jucp0p8v20016eocow60mjedhn6co30c1g68qjed1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads - add language to campaign

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

You can add Languages
  
by

using the CampaignCriterionService
.
Although there are not specific examples for languages, you can have a look
at our client libraries
. There are
examples on how to add Campaign Criterions
  
such

as locations. You can use this as a reference for Languages.

Cheers,
Anthony
Google Ads API Team


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

On 03/27/19 11:21:48 fbos...@gmail.com wrote:

How does one add languages to a campaign, can't really find anything in the
docs.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/bb59eae2-2f83-4616-add4-bdafe29c7510%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/1a0q240181as12001hms9cy6smj4chm6co30c1g68qjac1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Create customer account using by ads API

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Myung,

I see that you are trying to create an account and facing
USER_PERMISSION_DENIED. Usually you face USER_

PERMISSION_DENIED

error when your OAuth credentials are for a user who does not have access
to the client customer ID specified or any of its manager accounts. Does
Alice's email address have access to the client customer Id mentioned in
the API call? You could share the Alice's email address and the Client
Customer Id passing in the request to investigate further. You could use
reply privately to the author option while sharing the information
requested.

Regards,
Sai Teja, Google Ads API Team


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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/00d12jef8800gs0aso001hsccex64mj8d9m68o30c1g68qj6chi%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads API: Why is there no attribute "extension_feed_item.price_feed_item.final_urls"

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Mat,

That's right. The Final URL field is not yet available for the Price
Extension. I have raised a feature request to the team. Please keep an eye
on our blog
 for
more updates.

Thanks,
Bharani, Google Ads API Team

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

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/1a0nk380o3vduu0001ems8y6kmjcdpl74o30c1g68qjichn%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads - add language to campaign

2019-03-27 Thread F B
How does one add languages to a campaign, can't really find anything in the 
docs.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/bb59eae2-2f83-4616-add4-bdafe29c7510%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adding Hotel AdGroupCriterion without bidding value

2019-03-27 Thread Didier Roy
Hello 

I want to create an AdGroupCriterion with a hotel selection setting any bid 
( My bid is defined at adGroup level)
Ahen I remove line $adGroupCriterion->setPercentCpcBidMicros(new 
Int64Value(['value' => 1])) I get message field_error: The required field 
was not present in the resource.
what is the correct way to do this?

I am using Google Ads API PHP client library

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.
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/4fb5d907-65ff-4771-ba43-226080e3e21a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Operations on different kinds of entities in a single request

2019-03-27 Thread Vitaly Dukhota
Thank you Sreelakshmi. Am I right assuming your answer applies to both 
AdWords API and the new Ads API?
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/61252973-f7ff-451c-9497-af4589a917f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


【至急】Hope to answer quickly,about application of Google API( I would like an answer in Japanese)

2019-03-27 Thread garepo . analytics
Hi,

We are developing a tool to create an API connection to a Google 
advertising account and create a report.
MCC is required for application, but when developing as a third party, is 
it necessary to apply for API use for each MCC?
Many of our customers are advertising agencies.
Having an MCC account and acting as your Google Advertising Agent, there 
are many such companies.
We are promoting the development of tools linked to Google advertising 
account in the API,
but if it is approved to use the API using our MCC account, we will apply 
in the MCC of our customers Is it unnecessary? Or do you need to apply each 
time in MCC?

Google広告アカウントへAPI接続してレポート作成するツールの開発を進めています。
申請にはMCCが必要とのことですがサードパーティとして開発を進める際、MCCごとにAPI使用申請が必要ですか?

弊社のお客様の中には広告代理店の会社様も多くいらっしゃいます。
MCCアカウントを保有されてお客様のGoogle広告運用代行をされており、そのような会社様が多くいらっしゃいます。
弊社ではAPIでGoogle広告アカウントと紐づけたツールの開発を進めていますが、
弊社が保有しているMCCアカウントを使用してAPI使用申請を出して承認されれば、弊社のお客様のMCCでは申請は不要でしょうか?
それともMCCではごとに毎回申請が必要でしょうか?

Is it not possible to make API connection only with a Google advertising 
account that does not have an MCC?
I am very sorry for the continuing question.

As I asked you earlier, we are developing a tool to create a report by 
connecting with a Google advertising account and API.

According to the survey, it is necessary to apply MCC and tokens for API 
application, but if our company developing the tool applies for API from 
our MCC and it is approved,
 our customer who uses this tool will use MCC But if you have a direct 
child account, can you not create a report using the API?

MCCを保有していないGoogle広告アカウントだけではAPI接続できないのでしょうか?
続けての質問で大変恐縮です。

先程も質問させていただいたのですが、Google広告アカウントとAPIで接続してレポート作成するツールの開発を進めています。

調べたところ、API申請にはMCCとトークンが必要とのことですが、ツール開発している弊社が自社のMCCからAPI申請し、承認された場合、
このツールをご利用頂く弊社のお客様がMCCではなく、直接の子アカウントをお持ちの方だとするとAPIを使用してレポート作成できないのでしょうか?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/3c708204-87cc-4254-89fd-dfdda015f373%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [8-5077000025924] get reports from different accounts

2019-03-27 Thread uatetracom3
   Thank you for the answer.
I have 2 questions.
You give me a link to google ads but I already installed google adwords 
(installed library and get refresh_token). [1] Can I do all by google 
adwords library?
I already tried the first API call but have the answer: 
"[QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED @; trigger: ''] '. I 
used the developer token with *Access level - Test Account*. 
So, now I'm writing to apply developer token, but do not understand [2] 
what I have to write in documentation in part *API Services Called.*

середа, 27 березня 2019 р. 09:42:08 UTC+2 користувач 
googleadsapi-forumadvisor написав:
>
> Hi,
>
> Thank you for reaching out. If you want to use the Google Ads API 
>  to generate 
> reports, first you have to apply for a developer token if you don't 
> already have one by following this guide 
> . 
> Then, you should download a client library 
> , set up 
> OAuth2 credentials by following this guide 
> 
>  and 
> get your refresh token by following this guide 
> 
> . 
>
> Once your setup has been completed, you may then make your first API call 
> using your test account. You may check this guide 
>  for 
> more information about the access level.
>
> Also, you should take note that test accounts can't be associated to a 
> production account. If you want to make an API call to a production 
> account, you should apply for basic access 
> .
>  
> The Compliance Team will contact you within 2 business days for its status. 
> Once access has been approved, you may then make an API call to your 
> production Google Account.
>
> Regards,
> Dave Paurillo
> Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/26/19 22:14:40 uatet...@gmail.com  wrote:
>
> Hi!
> We want to get reports from Google Adwords by API. Get reports from 
> account of our clients save this data and build special reports for clients 
> for understand (show) efectivity ads.
> Please, help me to understand how it have to work.
> If I right understand:
> 1. i have to register manage account in google adwords
> 2. for testing I have to register test account
> 3. then connect my test account to non-test account (how i can do it by 
> API?)
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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.
> 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/30349bb9-f34e-42d2-a65f-9b9792e4ccea%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 

Google Ads API: Why is there no attribute "extension_feed_item.price_feed_item.final_urls"

2019-03-27 Thread Mat
Hi,

there are attributes like

extension_feed_item.app_feed_item.final_urls
extension_feed_item.promotion_feed_item.final_urls
extension_feed_item.sitelink_feed_item.final_urls

and there are several "price_feed" attributes like

extension_feed_item.price_feed_item.final_url_suffix

in extension_feed_item:
https://developers.google.com/google-ads/api/docs/fields/extension_feed_item

I wonder why there is no "extension_feed_item.price_feed_item.final_urls"?

Regards
Mat

-- 


*KE Keyword-Experte GmbH*
Augustaanlage 7-11
68165 Mannheim

Tel. -49 
(0)621 / 18 06 27-0
Fax +49 (0)621 / 18 06 27-99
i...@keyword-experte.de 

www.keyword-experte.de 


Handelsregister Mannheim HRB 704385

Geschäftsführer: Julian Flügge & Marcus Schütter


Google Ads  -  Facebook 
Ads  -  Bing Ads  -  Conversion-Optimierung

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/6b85e23e-ec92-4246-818c-2aabf8d56af8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ad_group_criterion_error: Subdivided listing groups must have an "others" case.

2019-03-27 Thread Didier Roy
Hello

the difference is on my side
it is working well on percent CPC campaign.
The error occurs on Manual CPC campaigns
is there any restriction on Manual CPC ?

thanks



Le mercredi 27 mars 2019 10:58:46 UTC+1, Didier Roy a écrit :
>
> Hello 
>
> since this morning I am not able to assign hotels to adGroups.
> I get message : 
> Google Ads failure details:
> ad_group_criterion_error: Subdivided listing groups must have an 
> "others" case.
> field_error: The required field was not present in the resource.
>
>
> Same with examples/HotelAds/AddHotelListingGroupTree.php is not working 
> anymore and gives the same error.
>
> is there anychange happening into listing_group or adGroups
>
> 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.
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/10ad6aa4-bea6-4aaf-bd09-184c3828e0f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ad_group_criterion_error: Subdivided listing groups must have an "others" case.

2019-03-27 Thread Didier Roy
Hello 

since this morning I am not able to assign hotels to adGroups.
I get message : 
Google Ads failure details:
ad_group_criterion_error: Subdivided listing groups must have an 
"others" case.
field_error: The required field was not present in the resource.


Same with examples/HotelAds/AddHotelListingGroupTree.php is not working 
anymore and gives the same error.

is there anychange happening into listing_group or adGroups

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.
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/defb6131-685a-4d65-8f1a-a15c0d134a71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CANNOT_HIDE_OR_UNHIDE_NON_ACTIVELY_LINKED_ACCOUNT / ManagedCustomerService / ERROR

2019-03-27 Thread georg . unterberger
Hey there again,

just found out that, if i dont set the hidden (therefore hidden -> null), 
everything works as expected, for me this is unintuitive, cause 
http://www.datypic.com/sc/xsd/t-xsd_boolean.html says that a boolean null 
has to be defined explicitly.

Greetings,
Georg Unterberger



On Wednesday, 27 March 2019 10:35:05 UTC+1, 
georg.un...@smarter-ecommerce.com wrote:
>
> Hey there, 
>
> im getting the same error but in a slightly other situation:
> I have a normal account (a), and a manager account (m).
> Using the ManagedCustomerService (authenticated as m), I create a 
> ManagedCustomerLink where clientCustomerId = a, managerCustomerId = m, 
> linkStatus = Pending, Operator = Add, hidden = false
>
> this is working, in the normal account i can see the invitation.
>
> Now i want to cancel the invitation and if i understood the documentation 
> correctly i need the following:
> ManagedCustomerService (authenticated as m), i cancel the 
> ManagedCustomerLink where clientCustomerId = a, managedCustomerId = m, 
> linkStatus = Cancelled, Operator = Set, hidden = false
>
> and in excatly this situation i get the 
> CANNOT_HIDE_OR_UNHIDE_NON_ACTIVELY_LINKED_ACCOUNT
>
> any ideas abouth this? Am i doing something wrong?
>
> Greetings,
> Georg Unterberger
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/bce39007-313a-4c30-b724-8631f70eb9dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Create customer account using by ads API

2019-03-27 Thread Myung Ju Park


Hi,


I'm doing to implementation for Google ads automation system through by Google 
APIs.

My code is referenced to documents of Google Ads API. ( 
https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201809/AccountManagement/CreateAccount.php
 
)

I have a two ideas for implementation it.

However, when I execution my code then I can seeing some problem (
AuthorizationError.USER_PERMISSION_DENIED).

So I wish your review and evaluation about it.


*1. common configurations.*

First, I made 'client ID' and 'client secret' from "Google API Console 
Credentials page.".

This values is *111-a.apps.googleusercontent.com*
 (client ID) and ** (client secret).

Second, I finished to confirm and received the developer token from Google.

This value is "*cc_d*".

Third, I sended to MCA (Multi-client account) request to Google for using my 
merchant center and I got approved it.


My client customer id for Google Ads API is *111-222-*.


*- preconditions for below two ideas.*

*Alice* : customer of this service (al...@google.com)

*Service*
 : partner of Google (service.part...@google.com) <-- implemented code


*2. Idea 1*

First, creating Google Ads account to using Alice's refresh token.

So, Service 
called by grantOfflineAccess() from gapi.auth2.getAuthInstance() of javascript 
for got Alice's offline code.

Before at this time, Service called gapi.client.init().

"apiKey" property value is "*yy_zz*
" in gapi.client.init() function.

And the after, Service thrown by Alice's offline code to background process.

- code -



*var* GoogleAuth;*var* SCOPE = 
"https://www.googleapis.com/auth/userinfo.profile 
https://www.googleapis.com/auth/userinfo.email 
https://www.googleapis.com/auth/siteverification 
https://www.googleapis.com/auth/content 
https://www.googleapis.com/auth/adwords";*var* offlineCode;

gapi.client.init(*{* 'apiKey': 
'yy_z',
'discoveryDocs': 
*[*"https://www.googleapis.com/discovery/v1/apis/drive/v3/rest"*]*,
'clientId': '111-a.apps.googleusercontent.com',
"prompt" : "consent",
'scope': SCOPE*}*).then(*function* () *{*
GoogleAuth = gapi.auth2.getAuthInstance();
GoogleAuth.isSignedIn.listen(updateSigninStatus);

$('#btnGoogleSignIn').click(*function*() *{*
handleAuthClick();
*}*);*}*);
*function* handleAuthClick()*{*

if (GoogleAuth.isSignedIn.get())
*{*
GoogleAuth.signOut();
*}*

 else 

*{*

GoogleAuth.grantOfflineAccess(*{*

 "prompt" : "consent",
'scope': SCOPE
*}*).then(*function*(resp) *{*
offlineCode = resp.code;
*}*);
*}*

*}*





Second, background process was getting Alice's refresh token by below code.

$*scopes* = PROFILE_API_SCOPE.' '.EMAIL_API_SCOPE.' '.
SITEVERIFICATION_API_SCOPE.' '.CONTENT_API_SCOPE.' '.ADWORDS_API_SCOPE;

$*oauth2* = new OAuth2([
'authorizationUri' => "https://accounts.google.com/o/oauth2/v2/auth;,
'redirectUri' => 'postmessage',
'tokenCredentialUri' => CredentialsLoader::TOKEN_CREDENTIAL_URI,
'clientId' => 
"111-a.apps.googleusercontent.com",
'clientSecret' => "",
'scope' => $*scopes*

]);
$*oauth2*->setCode(/* Alice's offline code */);$*authToken* = 
$*oauth2*->fetchAuthToken();


Third, if successded getting Alice's refresh token then background process was 
trying create account of Google Ads by below code.

$*oAuth2Credential* = (new 
OAuth2TokenBuilder())->withClientId("111-a.apps.googleusercontent.com")->withClientSecret("")->withRefreshToken(/*
 Alice's refresh toekn */)->build();

$*session* = (new 
AdWordsSessionBuilder())->withDeveloperToken("cc_d")->withOAuth2Credential($*oAuth2Credential*)->withClientCustomerId("111-222-")->build();
$*adWordsServices* = new AdWordsServices();
$*managedCustomerService* = $*adWordsServices*->get($*session*, 
ManagedCustomerService::class );
$*customer* = new ManagedCustomer();$*customer*->*setName*('Account #' . 
*uniqid*());$*customer*->setCurrencyCode('KRW');$*customer*->setDateTimeZone('Asia/Seoul');
$*operations* = [];$*operation* = new 

Re: creating ad in adgroup

2019-03-27 Thread Frode Storhaug
Hi, and thanks for answering. I am using  
https://github.com/googleads/google-ads-dotnet as client library (0.8.1 ). 
I would appreciate tips on how to enable logging. 
If I found out what resource was missing I could solve it. As I said, this 
worked a few weeks ago.
More debug info

trigger :  AdGroupAdOperation - create - stringvalue

%3Cnull%3E 

Thanks

Frode

On Tuesday, March 26, 2019 at 9:59:30 PM UTC+1, Frode Storhaug wrote:
>
> We have created a job that automatically generates ads based on posts in a 
> json feed.  Until recently this worked as it should, but last week (or so) 
> it stopped working. The campaign and adgrops are created, but the ad fails 
> in MutateAdGroupAdsAsync
>
> With the following exception
>
> Error location : Resource was not found
>
> Message
> "Status(StatusCode=InvalidArgument, Detail=\"Request contains an invalid 
> argument.\")"
>
> Request id : lQNBe_lmdyan9suAPouxIQ
>
> Did something change in the api ? 
>
> Thanks for any help
>
> Regards
> Frode
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/21db9a95-3c4b-4d4b-89b4-a66f23538018%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CANNOT_HIDE_OR_UNHIDE_NON_ACTIVELY_LINKED_ACCOUNT / ManagedCustomerService / ERROR

2019-03-27 Thread georg . unterberger
Hey there, 

im getting the same error but in a slightly other situation:
I have a normal account (a), and a manager account (m).
Using the ManagedCustomerService (authenticated as m), I create a 
ManagedCustomerLink where clientCustomerId = a, managerCustomerId = m, 
linkStatus = Pending, Operator = Add, hidden = false

this is working, in the normal account i can see the invitation.

Now i want to cancel the invitation and if i understood the documentation 
correctly i need the following:
ManagedCustomerService (authenticated as m), i cancel the 
ManagedCustomerLink where clientCustomerId = a, managedCustomerId = m, 
linkStatus = Cancelled, Operator = Set, hidden = false

and in excatly this situation i get the 
CANNOT_HIDE_OR_UNHIDE_NON_ACTIVELY_LINKED_ACCOUNT

any ideas abouth this? Am i doing something wrong?

Greetings,
Georg Unterberger

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/17503ebe-a17c-47e6-9d63-3ae33e8727ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [6-4744000025765] Obtain Campaign Statuses

2019-03-27 Thread dmitrii . stebliuk
Hi Dave,

Thank you for your answer.

I see in the documentation that for some bidding strategies eligibility is 
looks to be just a simple predicate like "To use Target ROAS bidding, your 
campaign must have at least 20 conversions in the past 45 days."  

It works for me like that. Do you know if there is a better documentation 
where I can understand if for other bidding strategies?

Limited by budget - probably should be accessible in Google Ads API 
Recommendation Service (I need to check it)

But Learning status I can not find anywhere, not in BiddingStrategy 
resource, not in old Google Adwords API documentation...
Do you know if there is any workaround to get it? Can I get it from another 
resource like BiddingStrategy? or the old Adwords API?
Or may be I can calculate it somehow?

Thank you!


On Wednesday, 27 March 2019 07:31:43 UTC+1, googleadsapi-forumadvisor wrote:
>
> Hi,
>
> Thank you for reaching out. Unfortunately, these statuses cannot be 
> obtained via Google Ads API. You may refer to this guide 
> 
>  to 
> see the campaign statuses that are obtainable in the API.
>
> Let me know if this helps. Should you have clarifications, feel free to 
> write back.
>
>
> Regards,
> Dave Paurillo
> Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/26/19 17:09:42 dmitrii@omio.com  wrote:
>
> Hello,
>
> In the Google Ads UI I see different statuses:
> - Eligible
> - Eligible (Learning)
> - Limited by Budget
> How can I obtain all these statuses for a campaign with Google Ads API?
>
> 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.
> 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/7b20f124-6dce-4430-8c48-c91bc6fee42d%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/ec597d90-3627-4ffc-8e53-c8135f227a21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Disable link accounts request

2019-03-27 Thread Create Website With Domain


मंगलवार, 26 मार्च 2019 को 8:32:43 अपर UTC+5:30 को, Marc Selman ने लिखा:
>
> Hi,
>
> Could you please disable the request account link email for our manager 
> account: EasyAds Google Ads (687-900-7142).
> We process all the account linking through the API so the customer does 
> not need to receive the request email.
>
> 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.
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/8ac72e76-52d0-4545-a371-ea8be43d3bb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Why integrationCode = null when getting audience???

2019-03-27 Thread Manh Quan Nguyen Tran
Hello everyone, I have get detail of audience with type is Youtube users by 
my API. But I have an issue with integrationCode, its is null. Although, 
with others types like  Website Visitors I have integrationCode : 
"tp=VISITORS_RULE". Is there any ways to solve its?
Thanks and regards!

Pictures support question:
With type = Website Visitors:  
  With type = Youtube User: 

[image: Screen Shot 2019-03-27 at 4.26.19 PM.jpg]   
   [image: Screen Shot 2019-03-27 at 4.26.52 PM.jpg]


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/75e3a149-e820-4bc6-bc57-7ee3abee5b08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: How to change test account to production account?

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Ken,

Unfortunately, it is not possible to change a test account to a production
account.

Also, if my understanding is correct, you wish to create a new production
MCC account using an email address which is already associated to an
AdWords account, whether in production or test, then this is not possible
as stated here
.

Please let me know if you have further clarifications.

Regards,
Hiroyuki
Google Ads API Team

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

On 03/27/19 12:47:50 knel...@gmail.com wrote:

Can I change test account to production account?
I want to create new production account with same email as test account,
but when I click here
Do you want to create a new Google Ads account associated with this email
address? Click here.
nothing effects.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/4dbc1892-f4bc-4ab4-a5ef-e512b6ec1b7b%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/18i3j280gl6d380015dru0w60mj6dpj74o30c1g68qjedpo%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: [0-7203000025673] Manage the relationship between accounts

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Thank you for reaching out. To be able to manage relationship between
accounts, you could check CustomerManagerLinkService
  
and

use MutateCustomerManagerLink method in managing the relationship between
manager and customer.

Let me know if this answers your concern. Should you have further
clarifications, feel free to write back.


Regards,
Dave Paurillo
Google Ads API Team


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

On 03/26/19 21:39:20 aleks.nep1...@gmail.com wrote:

Hi,
How to do it in the new version of google ads api v1 (Client library php) ?
No information in the documentation or I looked bad. It is necessary to
allow the Google account manager account to make changes to the account of
another user.
So, I need to manage the relationship between accounts. Please help with
this question.  Thank

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/a3a00fa9-42c1-497e-add7-1d12f9cb33da%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/19h64081gua68a0001kd3gz60mjechg6co30c1g68qjcdpj%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: [8-5077000025924] get reports from different accounts

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Thank you for reaching out. If you want to use the Google Ads API
 to generate
reports, first you have to apply for a developer token if you don't already
have one by following this guide
.
Then, you should download a client library
, set up
OAuth2 credentials by following this guide
  
and

get your refresh token by following this guide

.

Once your setup has been completed, you may then make your first API call
using your test account. You may check this guide
 for more
information about the access level.

Also, you should take note that test accounts can't be associated to a
production account. If you want to make an API call to a production
account, you should apply for basic access
.
The Compliance Team will contact you within 2 business days for its status.
Once access has been approved, you may then make an API call to your
production Google Account.

Regards,
Dave Paurillo
Google Ads API Team


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

On 03/26/19 22:14:40 uatetrac...@gmail.com wrote:

Hi!
We want to get reports from Google Adwords by API. Get reports from account
of our clients save this data and build special reports for clients for
understand (show) efectivity ads.
Please, help me to understand how it have to work.
If I right understand:
1. i have to register manage account in google adwords
2. for testing I have to register test account
3. then connect my test account to non-test account (how i can do it by
API?)

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/30349bb9-f34e-42d2-a65f-9b9792e4ccea%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/h0ui9vkct001ghem6er99ay70mjac1n6so30c1g68qjichk%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: How to confirm which API request submit to an old Adwords API version(v201806)?

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Zijian,

The email you are receiving may have just been a notification triggered
before you were able to migrate. If you have already migrated to the 201809
version, you may just ignore the said email. Also, if you wish to confirm
which version you are using in your requests, the SOAP request and response
logs should contain the version, specifically in the *RequestHeader* and
*ResponseHeader* elements as seen in this guide

.

I hope this helps.

Thanks and regards,
Peter
Google Ads API Team

On 03/26/19 17:49:40 lzjblin...@gmail.com wrote:

Hi all:
 Recently, I received the email from Adwords API Team which notified
"My AdWords API account has submitted 36% of all API requests to the old
Adwords API version (v201806) in last 7 days". But I have updated API
version to v201809 half a month ago, so I confused about it. Are there some
ways to confirm these API requests?

Thanks a lot.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/45ee6cb5-171b-46be-b943-097b0d77a663%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/180j8j810os7dcgh98y6omj8dho6ko30c1g68qjicpp%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: [6-4744000025765] Obtain Campaign Statuses

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Thank you for reaching out. Unfortunately, these statuses cannot be
obtained via Google Ads API. You may refer to this guide
  
to

see the campaign statuses that are obtainable in the API.

Let me know if this helps. Should you have clarifications, feel free to
write back.


Regards,
Dave Paurillo
Google Ads API Team


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

On 03/26/19 17:09:42 dmitrii.stebl...@omio.com wrote:

Hello,

In the Google Ads UI I see different statuses:
- Eligible
- Eligible (Learning)
- Limited by Budget
How can I obtain all these statuses for a campaign with Google Ads API?

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.
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/7b20f124-6dce-4430-8c48-c91bc6fee42d%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/ijlio17u1o000oa25g0016edn4w6omj8dpk6go30c1g68qjedhl%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads API V1.0 - CONTAINS operator

2019-03-27 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Jason,

To better investigate this, could you provide the complete request and
response logs when requesting using the Google Ads Query Language with
CONTAINS NONE operator? Please reply via *Reply privately to author*. Also,
I'm afraid the CONTAINS NONE operator is not available in the Interactive
Google Ads Query Builder

.

Thanks and regards,
Luis
Google Ads API Team


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

On 03/27/19 01:00:24 jason wrote:

Hi Google Ads team,

I keep on running into an 'invalid argument' error whenever I try to build
a query using the CONTAINS operator (https://developers.google.
com/google-ads/api/docs/query/grammar).

e.g. WHERE campaign.name CONTAINS NONE ('Example')

Referring to the interactive query builder, the filters don't seem to
support it (https://developers.google.com/google-ads/api/docs/query/
interactive-gaql-builder). Is this feature available?

Regards,

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/a31215d8-69a1-48b2-9034-2bb0b6cafc8d%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout.

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/19h1o3010i1u8g0001j9ucx64mjee9l74o30c1g68qjechl%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.