Trying to update the budget programmatically using v13 Gads API

2024-02-01 Thread Mrinal Pant
Can anyone out there can give me a good reference cuz, i cant find proper 
resources for the same.

1. I tried to retrieve the campaign id first to test things out.
from google.ads.googleads.client import GoogleAdsClient

from dotenv import dotenv_values


def get_campaign_id(campaign_name):
config = dotenv_values(".env")

credentials = {
"developer_token": config["developer_token"],
"refresh_token": config["refresh_token"],
"client_id": config["client_id"],
"client_secret": config["client_secret"],
"use_proto_plus": True
}

googleads_client = GoogleAdsClient.load_from_dict(credentials)

customer_id = config.get("account_id")
print(customer_id)

if not customer_id:
print("Google Ads customer ID not provided.")
return None
ga_service = googleads_client.get_service("GoogleAdsService")

query = f"""
SELECT
campaign.id
FROM
campaign
WHERE
campaign.name = '{campaign_name}'
"""

response = ga_service.search(customer_id=customer_id, query=query)

for row in response:
campaign_id = row.campaign.id
print(f"Campaign ID for '{campaign_name}': {campaign_id}")
return campaign_id

# Example usage
campaign_name_to_find = 'wowdare_united-kingdom_eng'
get_campaign_id(campaign_name_to_find)


I got the output in the console, so it worked well.


2. When i tried to update the budget using another function then it shows 
the error where i was trying to get the existing budget using  
CampaignBudgetOperation. 

Is there any other way to update the existing budget for a specific 
campaign.

*AttributeError: Unknown field for CampaignBudgetOperation: get*

def campaign_budget_update(campaign_id, budget):
config = dotenv_values(".env")

credentials = {
"developer_token": config["developer_token"],
"refresh_token": config["refresh_token"],
"client_id": config["client_id"],
"client_secret": config["client_secret"],
"use_proto_plus": True
}

googleads_client = GoogleAdsClient.load_from_dict(credentials)

customer_id = config.get("account_id")

if not customer_id:
print("Google Ads customer ID not provided.")
return None

campaign_budget_service = googleads_client.get_type(
"CampaignBudgetOperation")

# Construct the campaign budget resource name
campaign_budget_resource_name = campaign_id
#print(campaign_budget_resource_name)

# Get the existing campaign budget to modify
existing_campaign_budget = 
campaign_budget_service.get(campaign_budget_resource_name)

# Update the budget amount
existing_campaign_budget.amount_micros = budget * 1_000_000 # Convert 
budget to micros

# Create a mutate operation to update the campaign budget
operation = googleads_client.types.CampaignBudgetOperation(update
=existing_campaign_budget)

# Execute the mutate operation
response = googleads_client.service.campaign_budget.mutate_campaign_budgets(
customer_id=customer_id,
operations=[operation])

# Print the response
print(f"Budget updated for Campaign ID {campaign_id}. Response: {response}")

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0a69d7c6-51b1-4c9a-aa5f-2e9023d97bc1n%40googlegroups.com.


Emergency ! About waiting for Google API request.

2024-02-01 Thread Vanessa Murphy
  Hello,

I submitted an application for basic access last week, but the API team has 
not gotten back to me. Please let me know whether or not my application was 
accepted.That's the only thing we're waiting for right now.wish you a happy 
life.

The details of my API access application:
Google Ads Manager Account (MCC) ID: 850-631-3298

Access level: Basic APl Access

Kind regards,
Vanessa

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/71300091-f5b9-4529-ace8-075b06be678en%40googlegroups.com.


Google Ads Api Basic Access

2024-02-01 Thread Barbara Taylor
Hello,
I recently applied for a basic access token but I have not received any 
confirmation emails. Could you please let me know if my application has 
gone through okay?

Please do contact me if there is any problem.

The details of my API access application:
Google Ads Manager Account (MCC) ID: 958-245-6164

Looking forward to your reply.

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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7b2208a4-739c-4816-926a-5ddd8e85bf7an%40googlegroups.com.


Re: google ads api calls with bubble.io

2024-02-01 Thread No Code
Hello, can you share with me the method to make the call from the user's 
account list? 

 I am using 
https://googleads.googleapis.com/v15/customers:listAccessibleCustomers. 

Solicitud HTTP

GET https://googleads.googleapis.com/v15/customers:listAccessibleCustomers

 But I don't know if there can be another method to list the accounts.

El jueves, 25 de enero de 2024 a las 0:11:20 UTC-6, No Code escribió:

> Thank you very much, I'm reviewing it and setting up calls in Bubble.io. 
>
> I will let you know any new questions related to the topic.
>
> El miércoles, 17 de enero de 2024 a las 5:52:43 UTC-6, Google Ads API 
> Forum Advisor escribió:
>
>> Hi,
>>
>> Thank you for reaching out to the Google Ads API support team.
>>
>> Please find the answers for your questions below: 
>>
>>1. You can use this endpoint Method: customers.googleAds.searchStream 
>>
>> 
>>  
>>to retrieve data about campaigns via the Google Ads API.  
>>
>>
>>- Here's an example query to retrieve all campaign IDs and names for 
>>a specific customer: 
>>
>>
>>SELECT campaign.id, campaign.name
>>FROM campaign
>>WHERE customer.id = 'YOUR_CUSTOMER_ID'
>>
>>- You can specify the customer ID to target specific accounts and 
>>select the desired campaign fields you want to retrieve (e.g., campaign 
>>ID, name, status, budget). Also, you can use our Google Ads Query 
>>Builder 
>> 
>>for a campaign resource that helps build your query to retrieve the 
>>specific information you need. 
>>
>>   2. First, use the  List Accessible Customers 
>> 
>>  
>> method to get the list of accounts associated with a manager account. You 
>> may alsocheck this API documentation 
>> 
>>  for 
>> more information.  
>>
>>- Then, specify each customer ID and call the Method: 
>>customers.googleAds.searchStream 
>>
>> 
>>  method 
>>with the desired query targeting that specific customer.  
>>
>>  3. You can obtain a list of campaigns by date range using the below 
>> sample query:  
>>
>>
>> SELECT campaign.id, campaign.name, campaign.status
>> FROM campaign
>> WHERE segments.date DURING LAST_30_DAYS
>>
>>  Check this Date Ranges 
>>  
>> documentation to know about how to specify the date range. Then use the 
>> search method endpoint to   retrieve the data.
>>  
>> 4. You can use this search_term_view 
>>  
>> resource to build the query then use this endpoint Method: 
>> customers.googleAds.searchStream 
>> 
>>  
>> to retrieve the search term of a campaign.
>>
>> Additionally, I would suggest you to refer to this Query Cookbook 
>> , this 
>> guide provides a set of Google Ads Query Language queries that demonstrate 
>> how to return the same data as screens in the Google Ads UI
>>
>> If you still have any queries/concerns related to this, you can get back 
>> to us.
>>
>>   
>> This message is in relation to case "ref:!00D1U01174p.!5004Q02rX2AQ:ref"
>>
>> Thanks,
>>   
>> [image: Google Logo] Google Ads API Team 
>>   
>>  
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/23eeb2c9-1006-43a6-a871-16a5818b461cn%40googlegroups.com.


Basic Access API Application

2024-02-01 Thread Finku Google
Hello,

I submitted an application for basic access last week, but the API team has 
not gotten back to me. Please let me know whether or not my application was 
accepted.

The details of my API access application:
Google Ads Manager Account (MCC) ID:  380-914-4917
Access level: Basic APl Access

There was no Case ID generated during the time of application and I have 
not received any Case ID after application.

Kind regards,
Finku

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e2251e2a-f544-48b9-a01c-56d46f08fc94n%40googlegroups.com.


Google Ads Api Basic Access

2024-02-01 Thread Finku Google
Hello,

I submitted an application for basic access last week, but the API team has 
not gotten back to me. Please let me know if you need any additional 
information from my end. 

The details of my API access application:
Google Ads Manager Account (MCC) ID: 380-914-4917
 Access level: Basic APl Access
I havent recieved any email confirmation of anything from Google's end. 

Kind regards,
Finku

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/37a7d6c1-6648-429e-a3c5-984934bc5f6fn%40googlegroups.com.


RE: google ads api basic access

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Karin,

Thank you for reaching out to the Google Ads API support team.

After reviewing your concern, I understand that you have applied for basic 
access and haven’t received any response. Since the access requests are handled 
by the Google Ads API Compliance team, we are transferring the case to the Ads 
API Compliance team. Can you kindly provide the following information for the 
compliance team to further assist you with your concern:

Case ID generated from the compliance team in the format 0-0###0 (if 
there is any generated).

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for basic access with the below details.

Google Ads Manager Account (MCC) ID: 438-456-9384
Case ID: Requested

Do reach out to the Google Ads API support team for any queries related to the 
API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02ryln5:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/NU1SO0S87L2T00X12QjxL6TUyvRLxBzJr7Qw%40sfdc.net.


RE: basic access api application

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

After reviewing your concern, I understand that you have submitted a request 
for the basic access of Google Ads API developer token and waiting for a 
response from the team.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team. Can you kindly 
provide the following information for the compliance team to further assist you 
with your concern:

Case ID generated from the compliance team in the format 0-0###0 (if 
there is any generated)

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for the basic access with the below details.

Google Ads Manager Account (MCC) ID: 676-080-0778
Case ID: requested

Do reach out to the Google Ads API support team for any queries related to the 
API.

You can send the details via Reply privately to the author option, or direct 
private reply to this email.

This message is in relation to case "ref:!00D1U01174p.!5004Q02rylm8:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/zM7Pm0S87KX100My2-gdD0QG2jJLMNk__I9Q%40sfdc.net.


Google Ads Api Basic Access

2024-02-01 Thread Karin
Hello,

I submitted an application for basic access three days ago, but the API 
team has not gotten back to me. Please let me know if you need any 
additional information from my end. 

The details of my API access application:
Google Ads Manager Account (MCC) ID: 438-456-9384
Account Name:Karin
 Access level: Basic APl Access
I havent recieved any email confirmation of anything from Google's end. 

Kind regards,
Karin

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ef7d0d88-5807-4b81-a95b-843adb29c445n%40googlegroups.com.


Basic access API application

2024-02-01 Thread Marlene Diaz
Hello,

I submitted a request for basic access two days ago and the API team has 
yet to get back to me. Please let me know if my application is accepted.

Details of my API access application:
Google Ads Manager Account (MCC) ID: 676-080-0778
Access level: Basic APl access

kind regards,
Nancy

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/455fcf02-020a-4824-9847-7035cb9c9290n%40googlegroups.com.


Get Google Ads UI Phone Calls

2024-02-01 Thread Daniel Alvarado
Hello everyone, 

I´m trying to get the phone calls metric that you see in the Googel Ads UI, 
Campaign section ("Phone Calls" column) using the Google Ads APi with no 
luck.

First attempt: I sum: metrics.phone_calls with campaigns resource but I 
cant match both sources (Google Ads UI vs API). Huge difference
Second attempt: I sum all_view.start_call_date_time with Call View 
resource, but doesnt match (Google Ads UI vs API). Difference of 55 vs 47.

Do you guys used this same metric? Have diffferent results?

I´d appreciate your ideas.

Kind Regards

Daniel.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f994466c-243e-4b77-992b-8048587bd835n%40googlegroups.com.


Google Ads Api Basic Access

2024-02-01 Thread Avyay Gokavarapu
Hello,

I submitted an application for basic access last week, but the API team has 
not gotten back to me. Please let me know if you need any additional 
information from my end. 

The details of my API access application:
Google Ads Manager Account (MCC) ID: *575-240-2229\*

*Account Name - Eacel-ManagerAccount*
 Access level: Basic APl Access
I havent recieved any email confirmation of anything from Google's end. 

Kind regards,
Avyay Gokavarapu 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a21b5672-f0e2-4ec6-9cd9-77fc563fdc7en%40googlegroups.com.


Re: basic access api application

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Gulnaz,

Thank you for providing the additional information.

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for the access with the below details.

Google Ads Manager Account (MCC) ID: 494-496-4767
Case ID: User says that no case ID is generated
Access Level : Basic access

This message is in relation to case "ref:!00D1U01174p.!5004Q02ryk6e:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/NDeKT0S86T2000P0WKmaqRSwmNgWGGMK5rrg%40sfdc.net.


Re: basic access api application

2024-02-01 Thread Tricel Group
Hello,

There was no Case ID generated during the time of application and I have 
not received any Case ID after application.

Thanks,
Gulnaz



On Thursday 1 February 2024 at 15:24:36 UTC Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> By reviewing your concern, I understand that you have submitted an 
> application for the basic access of Google Ads API developer token and have 
> not received any update.
>
> Since the access requests are handled by the Google Ads API Compliance 
> team, we are transferring the case to the Ads API Compliance team. Can you 
> kindly provide the following information for the compliance team to further 
> assist you with your concern: 
>
>- Case ID generated from the compliance team in the format 
>0-0###0 (if there is any generated) 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request and the user did not receive the Case Id.
>
> Summary: The user has applied for the basic access with the below details. 
>
>
>
>- Google Ads Manager Account (MCC) ID: 494-496-4767 
>
>
>- Cases ID: requested  
>
> Do reach out to the 
> *Google Ads API* 
>  support team 
> for any queries related to the API.
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02ryk6e:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b9e9445c-24b4-43d0-97a7-0029c57c3afen%40googlegroups.com.


RE: basic access api application

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

By reviewing your concern, I understand that you have submitted an application 
for the basic access of Google Ads API developer token and have not received 
any update.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team. Can you kindly 
provide the following information for the compliance team to further assist you 
with your concern:

Case ID generated from the compliance team in the format 0-0###0 (if 
there is any generated)

@Compliance team, please confirm if you are able to assist in the below access 
request and the user did not receive the Case Id.

Summary: The user has applied for the basic access with the below details.

Google Ads Manager Account (MCC) ID: 494-496-4767
Cases ID: requested

Do reach out to the Google Ads API support team for any queries related to the 
API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02ryk6e:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/SJ62m0S86O4F00SusqqU2TSqC0rI-vU3ei5A%40sfdc.net.


Basic Access API Application

2024-02-01 Thread Tricel Group
Hello,

I submitted an application for basic access last week, but the API team has 
not gotten back to me. Please let me know whether or not my application was 
accepted.

The details of my API access application:
Google Ads Manager Account (MCC) ID:  494-496-4767 
Access level: Basic APl Access

Kind regards,
Gulnaz

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/36b7c58f-a6a4-4e8d-8b9b-34150781bc72n%40googlegroups.com.


RE: how to get all money-type metrics

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

Could you further elaborate on what exactly you are looking for from the Google 
Ads API support team? If possible, please share the related screenshots or 
error screenshots for further investigation.
This message is in relation to case "ref:!00D1U01174p.!5004Q02ryjiJ:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/IS-PB0S86MVR001wpCWQ2ORGOxODP5GnAXXQ%40sfdc.net.


Re: basic access token (google ads api) application

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for providing the additional information.

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:

The user has applied for the Basic access with the below details.

Google Ads Manager Account (MCC) ID: 655-924-5529
Case ID: User says that they didn't get Case ID

Do reach out to the Google Ads API support team for any queries related to the 
API.

This message is in relation to case "ref:!00D1U01174p.!5004Q02ryjaU:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/Vawjl0S86HJN00xOn0kSJvTpixLL4sUl7tUw%40sfdc.net.


Re: basic access token (google ads api) application

2024-02-01 Thread Konstantinos Georgakopoulos
Hello,

I did not receive any case ID.

Kind regards,
Konstantinos

On Thursday, February 1, 2024 at 1:06:33 PM UTC+2 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you have applied for basic 
> access to the developer token and are waiting for a response. 
>
> Since the access requests are handled by the Google Ads API Compliance 
> team, we are transferring the case to the Ads API Compliance team. Can you 
> kindly provide the following information for the compliance team to further 
> assist you with your concern: 
>
>- Case ID generated from the compliance team in the format 
>0-0###0 (if there is any generated) 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
> Summary:
> The user has applied for basic access with the below details. 
>
>- Google Ads Manager Account (MCC) ID:  655-924-5529 
>- Cases ID: requested 
>
> Do reach out to the *Google Ads API* 
>  support team 
> for any queries related to the API.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02ryjaU:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c705968e-6153-40b7-a795-d56e311b13a9n%40googlegroups.com.


Re: How to get all money-type metrics

2024-02-01 Thread Zweitze
This is probably possible but not using Google Ads API.

The libraries are largely created automatically. I think the sources to 
create the data classes (for campaigns, groups etc.) are also included in 
the library source - a long time ago I had to check something in the .NET 
library source, downloaded these sources and started studying. In there I 
found documentation how to create or update these data classes. (I didn't 
check these document, I was checking for some weird bug.)

So I suggest to download a library of your choice from GitHub, and study 
how these are created. You may also contact the library maintainers for 
help.

I hope this helps.
If you get results this way, would you give feedback here too?

On Wednesday, January 31, 2024 at 9:05:09 PM UTC+1 Reem Gawad wrote:

> Hello, just following up here. Could you confirm whether this is currently 
> possible through the Google Ads API?
>
> On Wednesday, January 10, 2024 at 11:41:01 AM UTC-5 Reem Gawad wrote:
>
>> To illustrate, if I make the following query to get all 
>> metrics selectable with a Campaign: "SELECT name, attribute_resources, 
>> data_type, metrics WHERE name = 'campaign'"
>>
>> How can I then identify from the metrics returned which ones are 
>> cost-related/Money related? Or which metrics will be returned in micros? Do 
>> you have an example of a query we can make to get this information for 
>> metrics?
>>
>> Thank you.
>> On Tuesday, January 9, 2024 at 7:07:33 PM UTC-5 Reem Gawad wrote:
>>
>>> Hello, 
>>>
>>> I am trying to fetch from the API all metrics that are returned in 
>>> micros. I saw in this previous answer 
>>>  the 
>>> following was stated:
>>> *"please note that Fields of type Money are returned in micro currency 
>>> units (micros) in the API"*
>>>
>>> How do I query for this *Money *field type through the Google Ads API? 
>>> I need to be able to differentiate metrics returned in micros from all 
>>> other metric types.
>>>
>>> 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/022927a4-02fc-40e2-bf86-f6c63bdd20b5n%40googlegroups.com.


RE: basic access token (google ads api) application

2024-02-01 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

After reviewing your concern, I understand that you have applied for basic 
access to the developer token and are waiting for a response.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team. Can you kindly 
provide the following information for the compliance team to further assist you 
with your concern:

Case ID generated from the compliance team in the format 0-0###0 (if 
there is any generated)

@Compliance team, please confirm if you are able to assist in the below access 
request.
Summary:
The user has applied for basic access with the below details.

Google Ads Manager Account (MCC) ID:  655-924-5529
Cases ID: requested

Do reach out to the Google Ads API support team for any queries related to the 
API.

This message is in relation to case "ref:!00D1U01174p.!5004Q02ryjaU:ref"

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/m_LWI0S86C6900QDbc7p1WSKm-o_-HjBDmlA%40sfdc.net.


Basic access token (Google Ads API) application

2024-02-01 Thread Konstantinos Georgakopoulos
Hello,

I recently applied for a basic access token but I have not received any 
confirmation emails. Could you please let me know if my application has 
gone through okay?

Please do contact me if there is any problem.

The details of my API access application are as below.
Google Ads Manager Account (MCC)ID:  655-924-5529
Access level: Basic APl access

Kind regards,
Konstantinos

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cc17d394-6e15-4229-a09f-6eb7d7e411f2n%40googlegroups.com.


Re: cannot get asset group data from asset_group_product_group_view though data exist in asset_group

2024-02-01 Thread Lộc Đoàn
Hi,
So currently, no workaround for my problem yet?

On Thursday, February 1, 2024 at 1:44:33 PM UTC+7 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for getting back to us.
>
> Yes, your understanding is correct, anything from the UI can be retrieved 
> via the API. Kindly note that retrieving the date segmentation from the 
> *asset_group* 
>  is 
> currently not yet supported by the Google Ads API. We have already raised a 
> feature request to support this feature from the Google Ads API. We do not 
> have a specific time frame for the availability of this feature at the 
> moment. However, please be assured that our team is actively working on it. 
> I would recommend you to please follow our *Release Notes* 
>  and *Blog 
> post*  for 
> future updates. Also, you can refer to this API documentation 
>  
> for 
> guidance on what reporting is currently available for performance max 
> campaigns. 
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02ry114:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f0b3cca1-54b3-468a-a422-2de686abc120n%40googlegroups.com.


Re: CUSTOMER_NOT_ENABLED

2024-02-01 Thread OU L
Sorry, is there a way to avoid this problem ?

Chirag eReportz 在 2024年1月31日 星期三晚上7:35:41 [UTC+8] 的信中寫道:

> This is a long standing issue.
> This will occur only when account setup is in progress.
>
>
> On Wed, Jan 31, 2024 at 11:52 AM Shawn Hsiao  
> wrote:
>
>> Hi,
>>
>> I had encountered the same issue, set customer.status = 'ENABLED' solved 
>> the issue.
>>
>> On Wednesday, January 31, 2024 at 5:53:10 AM UTC+8 Google Ads API Forum 
>> Advisor wrote:
>>
>>> Hi,
>>>
>>> Thank you for getting back to us.
>>>
>>> To better understand your concerns, could you please provide us with the 
>>> complete API logs (*request* 
>>> 
>>>  
>>> and *response* 
>>> 
>>>  
>>> with *request-id* 
>>> 
>>>  
>>> and *request header* 
>>> )
>>>  
>>> and uncropped UI screenshots to further investigate this issue. 
>>>
>>> If you are using a client library and haven't enabled the logging yet, I 
>>> would request you to enable logging for the specific client library that 
>>> you are using. You can refer to the guides *Java* 
>>> 
>>> ,* .Net* 
>>> 
>>> ,* PHP* 
>>> 
>>> ,* Python* 
>>> 
>>> ,* Ruby* 
>>> 
>>>  
>>> or* Perl* 
>>> 
>>>  
>>> to enable logging at your end. For REST interface requests, you can enable 
>>> logging via the curl command by using the -i flag.
>>>
>>>   
>>> This message is in relation to case "ref:!00D1U01174p.!5001U0CZyNO:ref"
>>>
>>> Thanks,
>>>   
>>> [image: Google Logo] Google Ads API Team 
>>>
>>>
>>> -- 
>> -- 
>> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>> Also find us on our blog:
>> https://googleadsdeveloper.blogspot.com/
>> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>>  
>> You received this message because you are subscribed to the Google
>> Groups "AdWords API and Google Ads API Forum" group.
>> To post to this group, send email to adwor...@googlegroups.com
>> To unsubscribe from this group, send email to
>> adwords-api...@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 a topic in the 
>> Google Groups "Google Ads API and AdWords API Forum" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/adwords-api/ZHAAa6szcrU/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> adwords-api...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/adwords-api/a42f960e-c36b-497f-8ca1-7b24de8ebf85n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8aeb16af-be81-496d-949a-b494a2199485n%40googlegroups.com.


Unable to obtain business_logo and business_name of customerasset

2024-02-01 Thread 北村史奈
Hello,
I would like to retrieve business_logo and business_name of customerasset, 
but even though they are set, I get 0 results.
The callouts and structured snippets that are also set at the account level 
can be retrieved, so please check if this is a problem.
By the way, business_logo and business_name of campaignAsset are correctly 
retrieved. The query for retrieval is as follows. 
SELECT 
customer_asset.asset,customer_asset.field_type,customer_asset.resource_name, 
customer_asset.status FROM customer_asset WHERE customer_asset.status = 
'ENABLED'

The response for retrieval is as follows.
{ "fieldMask": 
"customerAsset.asset,customerAsset.fieldType,customerAsset.resourceName,customerAsset.status"
 
} 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0106c448-7add-4c8e-b174-5244690998b9n%40googlegroups.com.