Re: v15 : regarding fetching linked merchant center details in v15

2024-06-11 Thread Shehan Jayasinghe
Hello, Anyone here manage to retrieve the merchant center name from google 
ads api? We can't find out where to retrieve the name anywhere in the docs

On Thursday, January 18, 2024 at 5:12:49 PM UTC+11 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 encountered difficulty 
> while upgrading to V15, specifically in locating the resource to retrieve 
> Merchant Center details associated with a Google Ads account. Kindly note 
> that to link Google Ads accounts with Merchant Center accounts, use 
> ProductLinkInvitationService 
> 
>  
> and ProductLinkService 
> .
>  
> I would recommend you to kindly refer to the "Account Management 
> "
>  
> documentation for more information. I would also suggest you refer to the "
> product_link_invitation 
> "
>  
> resource where you can retrieve the merchant center account name and status 
> of linking. 
>
> Please find the sample GAQL query: 
>
>
> SELECT product_link_invitation.merchant_center.merchant_center_id, 
> product_link_invitation.resource_name, product_link_invitation.status FROM 
> product_link_invitation
>
> Additionally, you can utilize the *Google Ads Query Builder* 
> 
>  
> and *Query Validator* 
>  
> to build and validate the queries for retrieving the data from the Google 
> Ads API.
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rXFRj: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/b16a66bf-2d02-453a-b714-d883b03935ecn%40googlegroups.com.


Re: Internal error when trying to remove existing ad group critieria

2023-06-18 Thread Shehan Jayasinghe
Fixed it by adding the following when creating the user list

  exclusive_operands: [{}]

complete structure

 userLists = [{
name: data.name,
membership_life_span: data.membership_lifespan ?? 
365,
membership_status: enums.UserListMembershipStatus.
OPEN,
rule_based_user_list: {
prepopulation_status: data.pre_populate ? enums.
UserListPrepopulationStatus.REQUESTED : enums.UserListPrepopulationStatus.
UNSPECIFIED,
flexible_rule_user_list: {
inclusive_rule_operator: enums.
UserListFlexibleRuleOperator.OR,
inclusive_operands: [{
rule: {
rule_type: enums.UserListRuleType.
OR_OF_ANDS,
rule_item_groups: [{
rule_items: [{
name: 'url__',
string_rule_item: {
operator: enums.
UserListStringRuleItemOperator.CONTAINS,
value: data.website
}
}]
}]
}
}],
exclusive_operands: [{}]
}
}
}];
On Monday, June 19, 2023 at 2:14:03 PM UTC+10 Shehan Jayasinghe wrote:

> Apologies, this does not occur when trying to delete ad group criteria. It 
> happens when trying to create a website-visitor user list.
> We have migrated to flexible rule user lists. We're currently unable to 
> create a user list due to this issue
>
> On Monday, June 19, 2023 at 12:01:20 AM UTC+10 Shehan Jayasinghe wrote:
>
>> We get this message when trying to remove ad group criteria
>>
>> ud {
>>   errors: [
>> _d { error_code: [p], message: 'An internal error has occurred.' }
>>   ]
>> }
>>
>> p { internal_error: 2 }
>>
>> request ID is zQu6rDDLZLl5SCGdXd_XIw
>>
>> We are on v13 (just recently upgraded from v12 -> v13) 
>> This campaign was created while on v12
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f3e42648-0a03-49a7-9be5-13b590d319can%40googlegroups.com.


Re: Internal error when trying to remove existing ad group critieria

2023-06-18 Thread Shehan Jayasinghe
Apologies, this does not occur when trying to delete ad group criteria. It 
happens when trying to create a website-visitor user list.
We have migrated to flexible rule user lists. We're currently unable to 
create a user list due to this issue

On Monday, June 19, 2023 at 12:01:20 AM UTC+10 Shehan Jayasinghe wrote:

> We get this message when trying to remove ad group criteria
>
> ud {
>   errors: [
> _d { error_code: [p], message: 'An internal error has occurred.' }
>   ]
> }
>
> p { internal_error: 2 }
>
> request ID is zQu6rDDLZLl5SCGdXd_XIw
>
> We are on v13 (just recently upgraded from v12 -> v13) 
> This campaign was created while on v12
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b8e03cc6-b4db-40a8-9c23-7db3ee12d9fan%40googlegroups.com.


Internal error when trying to remove existing ad group critieria

2023-06-18 Thread Shehan Jayasinghe
We get this message when trying to remove ad group criteria

ud {
  errors: [
_d { error_code: [p], message: 'An internal error has occurred.' }
  ]
}

p { internal_error: 2 }

request ID is zQu6rDDLZLl5SCGdXd_XIw

We are on v13 (just recently upgraded from v12 -> v13) 
This campaign was created while on v12

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7c4b50d1-5b7e-49f4-a656-913025488e36n%40googlegroups.com.


Re: Problem with Lead Form Webhook

2022-10-26 Thread Shehan Jayasinghe
If anyone viewing can help me, please 
check 
https://support.google.com/google-ads/thread/183873766/leadform-not-firing-webhook
 
on the google ads community thread. Thank you

On Wednesday, October 26, 2022 at 5:17:11 PM UTC+11 adsapi wrote:

> Hi Shehan,
>  
>
> Thanks for reaching out to the Google Ads API team. I hope you are doing 
> well today.
>
>
> With regards to your issue about this, *"We've posted on the links you've 
> added here but no one is getting back to us. We've contacted google support 
> chat but they say they're not an expert on this issue. Please let us know 
> who can look into this as we can't retrieve our leads." *I understand 
> your situation right now but the only team can help you to retrieve you 
> lead is the team he mention by my colleague, allow me to reiterate again my 
> colleague said, *"Unfortunately, our team does not have the expertise to 
> assist with the Webhook API. According to the **support section * 
> *of the 
> Lead Form Webhook documentation, **the Ads community* 
> * is the recommended 
> place to ask for help on this." *If you have posted your concern to the 
> said Ads community. I suggest to wait for their response to your post 
> concern.
>  
>
> Regards,
> [image: Google Logo] 
> Darwin 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZKIPs:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"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/c22d49f1-5c16-4ebb-844b-5e8d2e5ef6fen%40googlegroups.com.


Re: Problem with Lead Form Webhook

2022-10-25 Thread Shehan Jayasinghe
We're having this same issue, we're setting up the ads through API and 
sending test data is received successfully. We've posted on the links 
you've added here but no one is getting back to us. We've contacted google 
support chat but they say they're not an expert on this issue. Please let 
us know who can look into this as we can't retrieve our leads. 

Thank you.

On Thursday, April 7, 2022 at 4:23:18 PM UTC+10 adsapi wrote:

> Hi Viktor,
>
> Thank you for your email.
>
> If you have related concerns on the Google Ads API/ AdWords API, please 
> feel free to add those in this email thread so our team can give support to 
> you.
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ZKIPs:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"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/4073e47d-fecf-48c5-9a53-d14a519ac025n%40googlegroups.com.


Re: Billing setup not working for sub account under manager account

2022-09-14 Thread Shehan Jayasinghe
Hi guys,
Any solution to this? We can't create a billing setup for sub accounts 
under a manager account. Always results in  errorCode: { billingSetupError: 
'NO_SIGNUP_PERMISSION' }
Any help would be greatly appreciated

On Tuesday, August 16, 2022 at 4:58:59 AM UTC+10 adsapi wrote:

> Greetings!
>
> This is one of those feature requests that takes a lot of planning to put 
> into place, so please don't plan for this to show up any time soon. 
> Currently, the only update I have on this one is that the feature request 
> is sitting under consideration, but there's no active development on it.
>
>
> Best,
> [image: Google Logo] 
> Nadine Wang 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2WyhED:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"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/6769d01f-d2cf-40b9-823d-42d81c84ab64n%40googlegroups.com.


Searching custom interests using the google ads API

2022-04-11 Thread Shehan Jayasinghe
Hi all,
We're trying to create a custom audience via the API. How do we search the 
interests and custom affinity & intent categories as shown in the 
screenshot?
Is there a search API or a GAQL query that we can use to query the relevant 
interests?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/72b9dcc7-6ae7-437d-acd5-7f8093d1c8d0n%40googlegroups.com.


Google ads API performance max asset groups

2022-04-06 Thread Shehan Jayasinghe
Hi,
I'm using  v10 and trying to build a performance max campaign.
The problem occurs when i try to create an asset group + assets via 
mutation operations.
All the necessary asset types are attached.
The error type is REQUEST_ERROR and the code is UNKNOWN. Error message says 
"The error code is not in this version."

Please let me know where i'm going wrong or if this is a bug on the 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 
"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/196e1f3c-27d8-4f8d-adc3-a6f769343616n%40googlegroups.com.