Re: Campaign budget gives DUPLICATE_NAME error even the previous campaign and campaign budget with same name has been removed

2023-07-31 Thread Divya Patel
Okay. So I think I understand where the issue is.

I was creating a shared budget. so I have to delete the budget from the 
shared budget list every time. 

I added this field when I create a campaign budget which solved the issue 
for me.

`explicitly_shared: false,`

const budget: MutateOperation[] = [
{
entity: "campaign_budget",
operation: "create",
resource: {
resource_name: budgetResourceName, // Create a budget with 
the temporary resource id
name: campaignBudgetName,
delivery_method: enums.BudgetDeliveryMethod.STANDARD,
amount_micros: toMicros(10),
explicitly_shared: false,
},
},
];

On Monday, 31 July 2023 at 12:08:59 UTC+5:30 Divya Patel wrote:

> My mistake with the removal operation. I used this . 
>
> const remove = {
> entity: "campaign_budget",
> operation: "remove",
> resource: getBudgetResourceName.campaign_budget.resource_name,
> };
>
> still the error is there.
>
> On Monday, 31 July 2023 at 12:06:53 UTC+5:30 Divya Patel wrote:
>
>> I am using "mutateResources()" method to create my campaign budget and 
>> campaign.
>>
>> I create a campaign and then delete that campaign from the google ads 
>> website. I do this for like 2 times and everything works properly. But 
>> after the 2nd (or 3rd - not sure) time, it threw this error. (note that the 
>> campaign is removed so I guess the campaign budget should also be removed. 
>> even so, it gives this error).
>>
>> {
>> "error_code": {
>> "campaign_budget_error": "DUPLICATE_NAME"
>> },
>> "message": "A campaign budget with this name already exists.",
>> "trigger": {
>> "string_value": "ABC Budget"
>> },
>> "location": {
>> "field_path_elements": [
>> {
>> "field_name": "mutate_operations",
>> "index": 0
>> },
>> {
>> "field_name": "campaign_budget_operation"
>> },
>> {
>> "field_name": "create"
>> },
>> {
>> "field_name": "name"
>> }
>> ]
>> }
>> }
>>
>> so I tried to remove the campaign budget using an API. I refer to this 
>> document 
>> https://developers.google.com/google-ads/api/docs/campaigns/budgets/remove-budgets
>>  and I also confirmed that the reference_count 
>> <https://developers.google.com/google-ads/api/reference/rpc/v14/CampaignBudget#reference_count>
>>  is 
>> 0.
>>
>> const [getBudgetResourceName] = await customer.query(`
>> SELECT
>> campaign_budget.resource_name,
>> campaign_budget.reference_count,
>> campaign_budget.status
>> FROM
>> campaign_budget
>> WHERE
>> campaign_budget.name = '${campaignBudgetName}'
>> `);
>>
>> const remove = {
>> entity: "campaign_budget",
>> operation: "update",
>> resource: getBudgetResourceName.campaign_budget.resource_name,
>> };
>>
>> after this the status of that campaign budget changes from ENABLED/PAUSED 
>> to REMOVE.
>>
>> after this, I am trying to create a new campaign budget with the same 
>> name. It still gives the same error.
>>
>> {
>> "error_code": {
>> "campaign_budget_error": "DUPLICATE_NAME"
>> },
>> "message": "A campaign budget with this name already exists.",
>> "trigger": {
>> "string_value": "ABC Budget"
>> },
>> "location": {
>> "field_path_elements": [
>> {
>> "field_name": "mutate_operations",
>> "index": 0
>> },
>> {
>> "field_name": "campaign_budget_operation"
>> },
>> {
>> "field_name": "create"
>> },
>> {
>> "

Re: Campaign budget gives DUPLICATE_NAME error even the previous campaign and campaign budget with same name has been removed

2023-07-31 Thread Divya Patel
My mistake with the removal operation. I used this . 

const remove = {
entity: "campaign_budget",
operation: "remove",
resource: getBudgetResourceName.campaign_budget.resource_name,
};

still the error is there.

On Monday, 31 July 2023 at 12:06:53 UTC+5:30 Divya Patel wrote:

> I am using "mutateResources()" method to create my campaign budget and 
> campaign.
>
> I create a campaign and then delete that campaign from the google ads 
> website. I do this for like 2 times and everything works properly. But 
> after the 2nd (or 3rd - not sure) time, it threw this error. (note that the 
> campaign is removed so I guess the campaign budget should also be removed. 
> even so, it gives this error).
>
> {
> "error_code": {
> "campaign_budget_error": "DUPLICATE_NAME"
> },
> "message": "A campaign budget with this name already exists.",
> "trigger": {
> "string_value": "ABC Budget"
> },
> "location": {
> "field_path_elements": [
> {
> "field_name": "mutate_operations",
> "index": 0
> },
> {
> "field_name": "campaign_budget_operation"
> },
> {
> "field_name": "create"
> },
> {
> "field_name": "name"
> }
> ]
> }
> }
>
> so I tried to remove the campaign budget using an API. I refer to this 
> document 
> https://developers.google.com/google-ads/api/docs/campaigns/budgets/remove-budgets
>  and I also confirmed that the reference_count 
> <https://developers.google.com/google-ads/api/reference/rpc/v14/CampaignBudget#reference_count>
>  is 
> 0.
>
> const [getBudgetResourceName] = await customer.query(`
> SELECT
> campaign_budget.resource_name,
> campaign_budget.reference_count,
> campaign_budget.status
> FROM
> campaign_budget
> WHERE
> campaign_budget.name = '${campaignBudgetName}'
> `);
>
> const remove = {
> entity: "campaign_budget",
> operation: "update",
> resource: getBudgetResourceName.campaign_budget.resource_name,
> };
>
> after this the status of that campaign budget changes from ENABLED/PAUSED 
> to REMOVE.
>
> after this, I am trying to create a new campaign budget with the same 
> name. It still gives the same error.
>
> {
> "error_code": {
> "campaign_budget_error": "DUPLICATE_NAME"
> },
> "message": "A campaign budget with this name already exists.",
> "trigger": {
> "string_value": "ABC Budget"
> },
> "location": {
> "field_path_elements": [
> {
> "field_name": "mutate_operations",
> "index": 0
> },
> {
> "field_name": "campaign_budget_operation"
> },
> {
> "field_name": "create"
> },
> {
> "field_name": "name"
> }
> ]
> }
> }
>
> So, can you please help me with this? What is the correct way to delete a 
> campaign budget? Or if there is any condition that needs to be checked?
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/74566579-f62f-46fc-922e-0c9e0974008bn%40googlegroups.com.


Campaign budget gives DUPLICATE_NAME error even the previous campaign and campaign budget with same name has been removed

2023-07-31 Thread Divya Patel
I am using "mutateResources()" method to create my campaign budget and 
campaign.

I create a campaign and then delete that campaign from the google ads 
website. I do this for like 2 times and everything works properly. But 
after the 2nd (or 3rd - not sure) time, it threw this error. (note that the 
campaign is removed so I guess the campaign budget should also be removed. 
even so, it gives this error).

{
"error_code": {
"campaign_budget_error": "DUPLICATE_NAME"
},
"message": "A campaign budget with this name already exists.",
"trigger": {
"string_value": "ABC Budget"
},
"location": {
"field_path_elements": [
{
"field_name": "mutate_operations",
"index": 0
},
{
"field_name": "campaign_budget_operation"
},
{
"field_name": "create"
},
{
"field_name": "name"
}
]
}
}

so I tried to remove the campaign budget using an API. I refer to this 
document 
https://developers.google.com/google-ads/api/docs/campaigns/budgets/remove-budgets
 and I also confirmed that the reference_count 

 is 
0.

const [getBudgetResourceName] = await customer.query(`
SELECT
campaign_budget.resource_name,
campaign_budget.reference_count,
campaign_budget.status
FROM
campaign_budget
WHERE
campaign_budget.name = '${campaignBudgetName}'
`);

const remove = {
entity: "campaign_budget",
operation: "update",
resource: getBudgetResourceName.campaign_budget.resource_name,
};

after this the status of that campaign budget changes from ENABLED/PAUSED 
to REMOVE.

after this, I am trying to create a new campaign budget with the same name. 
It still gives the same error.

{
"error_code": {
"campaign_budget_error": "DUPLICATE_NAME"
},
"message": "A campaign budget with this name already exists.",
"trigger": {
"string_value": "ABC Budget"
},
"location": {
"field_path_elements": [
{
"field_name": "mutate_operations",
"index": 0
},
{
"field_name": "campaign_budget_operation"
},
{
"field_name": "create"
},
{
"field_name": "name"
}
]
}
}

So, can you please help me with this? What is the correct way to delete a 
campaign budget? Or if there is any condition that needs to be checked?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f9914d6c-7300-4042-b281-d7fa29b8c9f4n%40googlegroups.com.


Not able to get campaigns from the test ads account

2021-09-15 Thread Divya Nagpal
Hi,

I am using Google Ads API in laravel and able to successfully make a 
connection between the client and the app with the Client ID, Secret and 
developer token using the API flow.

But when I am using the library for fetching the campaigns it is not giving 
any result and not even any error. I am able to fetch the account details 
using the library but not the campaign details. Why so?

I have used the library example in Postman just to test my request whether 
it is correct or not, then in the response it is giving:
{
"fieldMask": "campaign.id,campaign.name"
}


Please help me to solve out from this issue. 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2c64b355-29a4-4f08-b059-ad096c1d5191n%40googlegroups.com.


Re: Getting changes in the change history API

2019-01-03 Thread divya . agarwal
Hi Bharani,

Thank you, yet what I wanted to know is can we get campaign specific type 
of change like if there is a budget change or some other type of change.

On Friday, January 4, 2019 at 1:28:25 AM UTC+5:30, Bharani Cherukuri 
(AdWords API Team) wrote:
>
> Hello Divya, 
>
> You will be able to get the changes made to the Campaign using the 
> CustomerSyncService 
> <https://developers.google.com/adwords/api/docs/reference/v201809/CustomerSyncService>
>  and CampaignChangeData 
> <https://developers.google.com/adwords/api/docs/reference/v201809/CustomerSyncService.CampaignChangeData>.
>  
> This service will return changes on a customer account based on the given 
> date range as long as it is within the last 90 days. Please check this 
> reference guide 
> <https://developers.google.com/adwords/api/docs/reference/v201809/CustomerSyncService.CampaignChangeData>
>  for 
> more information. 
>
> Regards.
> Bharani, AdWords 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 
"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/2e6e394f-cd8d-4ff4-a7a9-8fc34c5e9284%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Getting changes in the change history API

2019-01-03 Thread divya . agarwal
Hi Team,

Can we get what type of change is made in the campaign using the Change 
history 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/a3ca3845-f7dc-4560-9218-59dbb3542af9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


User id for Campaign change history

2018-12-30 Thread divya . agarwal
Hi,

Is there anyway to get the User's id who made changes to the campaign for 
the get_account_changes example.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4621a607-f4a3-49dd-a811-b75ca2e2e69a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


SelectorError.INVALID_FIELD_NAME

2018-12-18 Thread divya . agarwal
Hi,

While running get_account_changes and supplying the account id, name and 
status in the selector, I am facing this error:

Error summary: {'faultMessage': "[SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'779-497-8869', SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'Titan', SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'Active']", 'requestId': 
'00057d4806038ab10a6218427f009436', 'serviceName': 'CampaignService', 
'methodName': 'get', 'operations': '1', 'responseTime': '180'}
Traceback (most recent call last):
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\googleads\common.py", line 1382, in 
MakeSoapRequest
*packed_args, _soapheaders=soap_headers)['body']['rval']
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\zeep\proxy.py", line 42, in __call__
self._op_name, args, kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\zeep\wsdl\bindings\soap.py", line 132, 
in send
return self.process_reply(client, operation_obj, response)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\zeep\wsdl\bindings\soap.py", line 194, 
in process_reply
return self.process_error(doc, operation)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\zeep\wsdl\bindings\soap.py", line 299, 
in process_error
detail=fault_node.find('detail'))
zeep.exceptions.Fault: [SelectorError.INVALID_FIELD_NAME @ serviceSelector; 
trigger:'779-497-8869', SelectorError.INVALID_FIELD_NAME @ serviceSelector; 
trigger:'Titan', SelectorError.INVALID_FIELD_NAME @ serviceSelector; 
trigger:'Active']

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "get_account_changes.py", line 101, in 
main(adwords_client)
  File "get_account_changes.py", line 42, in main
campaigns = campaign_service.get(selector)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\googleads\common.py", line 1394, in 
MakeSoapRequest
e.detail, errors=error_list, message=e.message)
googleads.errors.GoogleAdsServerFault: [SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'779-497-8869', SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'Titan', SelectorError.INVALID_FIELD_NAME @ 
serviceSelector; trigger:'Active']

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/29a6914a-4f66-4ce6-91cb-d9889c24d29b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Test Manger account

2018-03-14 Thread Divya
Hi,

I'm trying to setup a test account for google manager, it still requires a 
credit card to be entered.

Can adword account be used as manager account.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6a84d7e0-87d4-4b9f-8bee-ddffabbc130a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google created Feed - Main Feed (Feed Origin - AdWords)

2017-12-07 Thread Divya Kumari Chandrababu

Hi Team,

I came across a couple of accounts where Google Adwords(ORIGIN) feed 
(example: Main callout feed) was created and items were already uploaded 
and associated at the 
account level. This conflicts with our own feed as we have set some custom 
attributes and the items differ from what is there in the Main callout 
feed. Therefore, we 
aren't able to associate our own feed at the account level as it has one 
there already. When I try to remove the attributes from Google created 
feed, it throws me back 
with an error, FeedError.CANNOT_SPECIFY_ADWORDS_ORIGIN_FOR_NON_SYSTEM_FEED. 
So, can't we make any changes to Google created feed?

Also, another observation is before we create any feed through API, there 
is no feed in the UI. Once, we create a feed through API, I see a Google 
created feed, by the 
name, 'Main 'Placeholder type' feed'. Is it something that happens by 
default? 

Appreciate your thoughts on this. Thank you!

Regards,
Divya C

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/60eca3a6-f5a5-4499-abb6-1dce4ad21e25%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdWords API you have the golden oppourtunities to earn more money in the morden world

2009-03-16 Thread divya kk

no investment:


no physical work:


no tension:


free register more income:


earn more money in the home:


per day earning is  10$ to 12$:


we can do it as part time job:


minimum one or two hours:


click here below:



 http://cartography.webs.com/


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to 
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~--~~~~--~~--~--~---