Genders do not exist for campaigns created via Bulk Upload

2023-07-07 Thread charlesb...@gmail.com
Hi,

Please see this example code:

function main(){

  const genderSelector = AdsApp.videoTargeting()
.genders()
.withCondition("ad_group.status in (ENABLED, PAUSED, REMOVED)")
.withCondition("campaign.status in (ENABLED, PAUSED, REMOVED)")
.withCondition("ad_group_criterion.status in (ENABLED, PAUSED, REMOVED)"
);

  const genderIterator = genderSelector.get();

  while (genderIterator.hasNext()) {
let gender = genderIterator.next();
console.log(gender.getVideoAdGroup().getVideoCampaign().getName() + " - 
" + gender.getVideoAdGroup().getName())
//here, campaigns/ad groups are only listed for the campaign I created 
manually
//campaign created via bulk upload (I have 3) are not listed
  }
}


Per the comments, a campaign named "YouTube" (created manually) appears but 
all my other campaigns aren't listed.

The campaign which are *not *showing:
 - Have the same campaign type
 - Have ad groups (and those ad groups obviously have genders)
 - Don't have any clicks or impressions

My account ID is 125-518-7903 and the script is named "Playground".

Any help would be appreciated.

Thanks,

Charles



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/db587bf0-5f49-44db-b4d4-2a2074282ea0n%40googlegroups.com.


RE: how to designate connected tv at "row type:device" in bulk upload

2023-05-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to Google Ads API Forum.

It seems like your concern is regarding Google Ads Scripts. Unfortunately, our 
team specializes in Google Ads API 
(https://developers.google.com/google-ads/api/docs/start) related concerns 
only. For Google Ads Scripts related concerns, please create a new forum case 
in the respective Google Ads Scripts Forum 
(https://groups.google.com/g/adwords-scripts).

This message is in relation to case "ref:_00D1U1174p._5004Q2lK96D: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/wVUGy0RV3QO400eJ3bTwodR6y8bShjc7ogOg%40sfdc.net.


How to designate Connected TV at "Row Type:Device" in Bulk Upload

2023-05-21 Thread aki
I use the "Bulk Upload" which is explained in the article below.
(https://developers.google.com/google-ads/scripts/docs/features/bulk-upload)

And also, I check "Bulk Upload Temple" 
(https://www.gstatic.com/adwords/campaignmgmt/templates/campaign_mcc_template.xlsx)

But there is no sample to designate Connected TV at "Row Type:Device" in 
Bulk Upload.


(If I want to specify MOBILE/TABLET/DESKTOP at "Row Type:Device", this code 
will work. But there is no way to designate Connected TV at "Row 
Type:Device")

```
const columns = [
   "Campaign", "Budget", "Bid Strategy type", "Campaign type", "Devices"
];
const upload = AdsApp.bulkUploads().newCsvUpload(columns);
upload.append({
   "Campaign": "Test Campaign 1",
   "Budget": 2.34,
   "Bid Strategy type": "cpc",
   "Campaign type": "Search Only",
   "Devices": "Computers:+10%; Mobile devices with full browsers:-5%; 
Tablets with full browsers:+15%.",
});
upload.forCampaignManagement();
upload.preview();
```

Is there any way to designate Connected TV at "Row Type:Device" in Bulk 
Upload??
Thanks for any advice.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/73fb4a82-c351-4f07-9a12-1d929add8802n%40googlegroups.com.


Is it possible to bulk upload ConversionAdjustments by the api?

2023-02-24 Thread tim ogilvie
Is there a way to do bulk uploads using this:

https://developers.google.com/google-ads/api/docs/conversions/upload-adjustments?hl=en#code_example

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/322fd06e-8336-4f8c-b6bf-65c176dc37d7n%40googlegroups.com.


Re: Best solution for audiences bulk upload in performance max campaigns?

2023-02-23 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Haydea,

Thank you for getting back to us. I hope you are doing well today.

Moving forward to your concern, If you are looking for the performance max 
campaign, you may refer to this document. This document contains information 
about Performance max campaign.

Regards,

Google Ads API Team
ref:_00D1U1174p._5004Q2jFtDD: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/ZBnRd0RQKKNP00xCTtlvIsQCK1M1-l8WE57g%40sfdc.net.


Re: Best solution for audiences bulk upload in performance max campaigns?

2023-02-23 Thread Haydea Dantes
This would be a peformance max campaign

On Thursday, 23 February 2023 at 16:08:27 UTC+1 Google Ads API Forum 
Advisor wrote:

> Hi Haydea,
>
> Thank you for reaching us out. I am Sherwin from Google Ads API support 
> team. I hope that you are doing well today.
>
> Moving forward to your concern, in Google Ads API 
>  perspective, 
> the available campaigns type that can be done is listed in this document 
> . 
> To further help you, could you please elaborate to us your main concern 
> regarding the campaign that can generate leads?
>
> Kind regards, 
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2jFtDD: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/a8b39204-fbe3-4ef8-a38a-dd1fe6b38d21n%40googlegroups.com.


Best solution for audiences bulk upload in performance max campaigns?

2023-02-23 Thread Haydea Dantes
Hi,
We need to launch a campaign whose goal is to generate leads for local 
aesthetic surgery clinics all accross Europe. So we are looking into 
targeting people living within 5 km radious from a list of around 3000 
clinics. Each clinic would have a customised landing page and phone number 
to land. 

We have never done such a thing and we are looking to automate the campaign 
creation process... would this be done thorugh the Google Ads API or using 
the template /other option would suffice? We are not technical people so 
trying to understand better the scope to hire the right professional to 
help us. 

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/d1c302ca-5771-4b56-be19-031146785283n%40googlegroups.com.


Re: Upload Offline Conversions - BULK Upload

2022-05-25 Thread Dominik Raffetseder
For every link there i got service unvailable?

adsapi schrieb am Freitag, 20. Mai 2022 um 04:05:37 UTC+2:

> Hi Dominik,
>
> Thank you for your question.
>
> Currently, you should only be able to upload up to 2,000 conversions per 
> call 
> ,
>  
> and as per this guide 
> ,
>  
> perform as many calls based on your daily operational limits.
>
> For the PHP example, you can then refer here 
> .
>  
> I hope this helps.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2YblvJ: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/62631ed8-bd64-484b-b782-0d5bb6691616n%40googlegroups.com.


Upload Offline Conversions - BULK Upload

2022-05-19 Thread Dominik Raffetseder
Good Morning,
is there any example for bulk upload click conversions in PHP?
Is bulk upload possible?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f676b258-8ffd-471d-9bf3-b698d1f267e6n%40googlegroups.com.


RE: Trying to edit Product Status via API Bulk upload of CSV file.

2021-12-09 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Michael,

Thanks for reaching out. You can issue a MutateAdGroupCriteriaRequest to make 
changes to ad group criterion, such as product listing groups statuses. 
However, the Ads API documentation does not contain a code sample for 
implementing this in bulk. The closest sample is the 
AddShoppingProductListingGroupTree sample.

Regards,
Matt
Google Ads API Team


Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 
Google Ads API and AdWords API Annual Survey

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2SdN6W: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 
"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/RCjv90R3V7TY00Iacl_DpUTY-bhOs2x6k79Q%40sfdc.net.


Trying to edit Product Status via API Bulk upload of CSV file.

2021-12-08 Thread 'Michael Jenkins' via AdWords API and Google Ads API Forum
We currently are using Google Ads Editor to be able to do this. Essentially 
we generate a CSV file with: Campaign Name, Ad Group, Product Group, 
Product Group Type.

The Product Group Type is essentially the Product Status of Biddable or 
Excluded. With the CSV we just need to add it to the Editor and Update.

However, trying to find a way to do that within the Google Ads API it seems 
like that isn't possible? I am not sure if I am just missing something or 
stuff is labeled differently. From what I can tell it seems like it isn't 
possible which id assume it would be.

Obviously, I know I would need to port in Campaign ID, Ad Group ID, Product 
ID. That I don't care about that is easy. It's just the Bulk Update 
Campaign Product Bid Status via API that is not a thing.

Any information would be greatly appreciated.

Thanks,
Mike Jenkins

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/22dbd0be-560c-493c-b63e-454dabf5f167n%40googlegroups.com.


Re: Settting up "DynamicSearchAdsSetting" element when creating a campaign through Bulk Upload.

2021-08-02 Thread Google Ads API Forum Advisor
Hi Miguel,

Can you please clarify if you are using either the Ads or AdWords API? If you 
have any inquiries related to these APIs, we can assist, if you can provide 
more information on the issue. However, if you are only looking to upload a CSV 
using the UI, I'm afraid this is out of our team's scope, and would recommend 
trying the product team again with the link provided by Ernie.

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2JC8Ur: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 
"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/HNulM0QX8B5E00iy1PPsTeS8GwurVHSZPGCA%40sfdc.net.


Re: Settting up "DynamicSearchAdsSetting" element when creating a campaign through Bulk Upload.

2021-08-02 Thread miguel...@jot-im.com
I firstly contacted to them and they provided me some templates which only 
sets basic settings such as the campaign name, budget and tracking 
template. Nothing related to "DynamicSearchAdsSetting".


On Wednesday, July 21, 2021 at 10:18:47 AM UTC+2 adsapi wrote:

> Hi Miguel,
>
> Thanks for raising your concern.
>
> Could you confirm if your concern is related to Google Ads API / AdWords 
> API? I asked because uploading of CSV is not supported in API, specifically 
> for create a new campaign and set up the Dynamic Search Ads setting.
>
> If your concern is about uploading CSV file on Google Ads UI to create 
> account, then the team that you need to reach out about this concern is the 
> product team. You can contact them via this link 
> .
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2JC8Ur: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 
"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/676e69dd-e2a8-4d3a-9798-1106789f54d0n%40googlegroups.com.


RE: Settting up "DynamicSearchAdsSetting" element when creating a campaign through Bulk Upload.

2021-07-21 Thread Google Ads API Forum Advisor
Hi Miguel,

Thanks for raising your concern.

Could you confirm if your concern is related to Google Ads API / AdWords API? I 
asked because uploading of CSV is not supported in API, specifically for create 
a new campaign and set up the Dynamic Search Ads setting.

If your concern is about uploading CSV file on Google Ads UI to create account, 
then the team that you need to reach out about this concern is the product 
team. You can contact them via this link.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2JC8Ur: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 
"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/4tQjy0QWL5QU00Lk0sT0EVSMKOVmAhkhM3HA%40sfdc.net.


Settting up "DynamicSearchAdsSetting" element when creating a campaign through Bulk Upload.

2021-07-20 Thread miguel...@jot-im.com
Hello,

I am trying to figure out how to create a new campaign and set up the 
Dynamic Search Ads setting uploading a csv file.

I attach the file I'm using for testing. I am not sure if there is 
available a column to add that specific setting.

Any idea about which column should I include in the file and an example of 
it?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6d1947b3-4bc0-4182-9420-61396d65f985n%40googlegroups.com.


Google - Prueba2.csv
Description: MS-Excel spreadsheet


RE: Bulk upload keywords using java

2021-04-21 Thread Google Ads API Forum Advisor Prod
Hello,

Thanks for reaching out. The AdWords API documentation does not have a keyword 
bulk upload sample similar to the bulk upload feature found in the Ads scripts 
documentation. The closest sample that I can find is the add keywords to an ad 
group sample.

Regards,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2FaInu: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 
"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/qT8G70QRX5T8002P0YMz6JQv25YgtRqaYOBQ%40sfdc.net.


Bulk upload keywords using java

2021-04-21 Thread Siddhi Khole
Hi team,

I have a specific requirement to upload keywords via csv in java. I have 
gone through documents and found google ads script for bulk upload but I 
need to implement this in java. Is there any API/ sample code for bulk 
upload in java.  Can you please help me out with this?

FYI: Currently I am using adwords API

Thank you,
Siddhi

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fa969d2f-2bc7-46b1-aaad-1b0ee522b41fn%40googlegroups.com.


RE: bulk upload offline conversions

2021-01-27 Thread Google Ads API Forum Advisor Prod
Hello,

Thanks for reaching out. The expired_click error indicates the click is either 
too old to be imported or occurred before the conversion window. I would 
recommend that checking the Importing Click Conversions guide.

As you mentioned scripts, in case you are referring to Ads scripts, offline 
click conversions are a supported entity for bulk conversions in Ads scripts. 
Ads scripts has its own support forum, which can be found here.

Regards,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2B3bbA: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 
"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/B4BVM0QNLQJU00TJ90SJd8TAiOE-vPJsCNtw%40sfdc.net.


bulk upload offline conversions

2021-01-26 Thread 'matthew...@qlinkwireless.com' via AdWords API and Google Ads API Forum
Hi all, I am trying to bulk upload offline conversions via my own 
implementations with the adwords API. I keep getting the error " 
EXPIRED_CLICK", but I have no issue uploading the gClids when uploading one 
by one. Is there just no way to bulk upload or will I have to write a 
script to use the single upload one by one?
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/927c1694-3316-48cf-a073-367e999e9fd0n%40googlegroups.com.


RE: Customer Match Bulk Upload

2021-01-18 Thread Google Ads API Forum Advisor Prod
Hi Ilya,

Thank you for reaching out. The Google Ads API does support bulk upload of user 
data but it does not provide the CSV files upload based on its design as the 
API needs to validate the input rather than just upload whatever is in the 
file. If you need to do so, you would have to use the Google Ads UI or Google 
Analytics to achieve it. As for the bulk uploads of user lists in the Google 
Ads Scripts, you could post your concerns on the Google Ads Scripts forum and 
they would provide you more information about the feasibility of doing so via 
the Google Ads Script.

Thanks and regards,
Xiaoming, Google Ads API Team

Xiaoming
Google Ads API Team
ref:_00D1U1174p._5004Q2B1AUi: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 
"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/8ZBS_0QN5CXE00vrr4Fe60ROmki5IlgNZUxA%40sfdc.net.


Customer Match Bulk Upload

2021-01-18 Thread Ilya Karpov
Hi,

is there any API to upload customer user list as a bunch of files via sftp 
or storage bucket like it is already implemented 
<https://support.google.com/admanager/answer/4349785?hl=en> in Google Ad 
Manager?

Also I've found bulk upload 
<https://developers.google.com/google-ads/scripts/docs/features/bulk-upload> in 
Google Ads scripts but not for customer lists. Are there any plans to 
implement it?

Thanks forward! 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d94e41d6-c421-4f55-9cd4-4468a51ea106n%40googlegroups.com.


RE: Bulk Upload Geto-Targeting Locations

2020-11-04 Thread Google Ads API Forum Advisor Prod
Hello,

You can use Bulk Mutates. You can use the CampaignCriterionService with a 
criterion type as location. The ids for locations can be found here.

Regards,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q276sMo: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 
"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/mTLhl0QJA17700aLNGwNVmRdCBvVmVuzMVNA%40sfdc.net.


Bulk Upload Geto-Targeting Locations

2020-11-03 Thread Riyaad Edoo
Is there an easy way to bulk upload locations by zip code? Would likely be 
hundreds of locations.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0ba84a00-35eb-4d12-9ff0-580937e09a6bn%40googlegroups.com.


RE: xsi_type for bulk upload offline conversions

2020-01-24 Thread Google Ads API Forum Advisor Prod
Hi Iskander,

Thank you for reaching out. Please see the Python example here for more 
information on importing offline conversions. As it shows, you should use the 
xsi type "UploadConversion". However, the OfflineConversionFeedService isn't a 
supported batch job operation so you will be unable to use batch processing for 
this service.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwxN2: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 
"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/B3yPU0Q4MPXV00ImNleGeMRUK2FDU1fIvCbQ%40sfdc.net.


xsi_type for bulk upload offline conversions

2020-01-24 Thread 'Iskander Taneev' via AdWords API and Google Ads API Forum

Hello! 

I'm using Python API to write a script that compiles offline conversion at 
runtime and utilises batch processing in order to upload them in bulk. 
However, I'm facing difficulties regarding choosing a correct 'xsi_type'. 
Could anyone give me an advice as to which one should I be using? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/25bdfa70-987d-4f6c-904b-a86fd5602946%40googlegroups.com.


Re: Bulk upload campaign empty response

2020-01-16 Thread Branko Dragovic
 Hi Mitchell,
I sent log file as private message.

All the best,
Branko 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f169b025-455c-417c-9d2d-fef409c2ec79%40googlegroups.com.


RE: Bulk upload campaign empty response

2020-01-15 Thread Google Ads API Forum Advisor Prod
Hi Branko,

Thank you for reaching out. Can you please provide the complete detailed 
request and response logs via reply privately to author so that I can further 
investigate the issue? You can find information on enabling logging in the 
ReadMe of your client library.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwXRl: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 
"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/Bs1zq0Q45YJP00RqwR47J4RQCw-sNTAzMcRw%40sfdc.net.


Bulk upload campaign empty response

2020-01-15 Thread Branko Dragovic
Hi,
Im tying to upload  campaign

This is response i get:

https://adwords.google.com/api/adwords/cm/v201809;>

For other campaigns all worked perfectly. Not i have empty response.

Do you know what is cause of this issue ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0e9fb3b7-427c-4d3e-89ac-fbb1657653e1%40googlegroups.com.


RE: Bulk upload

2019-10-21 Thread Google Ads API Forum Advisor Prod
Hello,

Bulk uploads are supported with Google Ads Scripts. If you have any further 
questions, I'd recommend reaching out to the Google Ads Scripts Forum.

Regards,
Anthony
Google Ads Scripts Team
ref:_00D1U1174p._5001UKNwQd: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 
"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/Shu9G0PZQFJV00sI7FD_eQRfifFcY-Lq3LAQ%40sfdc.net.


Re: Bulk upload

2019-10-21 Thread Thanh Nguyen

>
> *Unfortunately, the bulk upload tool in the UI is not available in either 
> AdWords API or Google Ads API.*

What about the other 2 bulk action? Bulk Scripts & Bulk Rules? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/29057c3a-01ab-4168-8dc6-64fa231f4abd%40googlegroups.com.


Re: BulkUpload script working/failing inconsistently - why can't we build into certain accounts with the same script/bulk upload that reads the same csv?

2019-09-24 Thread Robert Knopfler
It ended up working somehow an hour later, thanks

On Tuesday, September 24, 2019 at 10:23:58 PM UTC-7, adsapiforumadvisor 
wrote:
>
> Hi Robert,
>
> Could you confirm if you are still encountering the issue? I asked this 
> because I can see that you already posted this concern on this forum post 
> 
>  
> in the Google Ads scripts forum. One of our colleagues will be contacting 
> you and provide support via the said thread.
>
> Let me know if you have further concerns.
>
> Regards,
> Ejay
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHHimB: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 
"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/338ff258-bd36-41a4-9d01-9e180d224b18%40googlegroups.com.


Re: BulkUpload script working/failing inconsistently - why can't we build into certain accounts with the same script/bulk upload that reads the same csv?

2019-09-24 Thread Google Ads API Forum Advisor Prod
Hi Robert,

Could you confirm if you are still encountering the issue? I asked this because 
I can see that you already posted this concern on this forum post in the Google 
Ads scripts forum. One of our colleagues will be contacting you and provide 
support via the said thread.

Let me know if you have further concerns.

Regards,
Ejay
Google Ads API Team
ref:_00D1U1174p._5001UHHimB: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 
"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/ejH3m0PYDGBF00q6RttF9OT2GDjY7SF3PECQ%40sfdc.net.


Re: BulkUpload script working/failing inconsistently - why can't we build into certain accounts with the same script/bulk upload that reads the same csv?

2019-09-24 Thread Robert Knopfler
Ejay - I'm trying to post in the forum, but I keep getting an error 
connecting with the server, and it persists even after reloading.

On Monday, September 23, 2019 at 10:39:28 PM UTC-7, adsapiforumadvisor 
wrote:
>
> Hi Robert,
>
> Thanks for posting your concern.
>
> It appears that the issue was encountered in 'Bulk Uploads' of Google Ads 
> scripts . However, 
> this forum is dedicated for the AdWords API and Google Ads API related 
> concerns/issues.
>
> You can post your concern on Google Ads Scripts Forum 
>  and let's 
> continue our conversation there to resolve the issue.
>
> Regards,
> Ejay
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHHimB: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 
"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/be98a91f-e25b-4530-94f4-550b75acebe1%40googlegroups.com.


RE: BulkUpload script working/failing inconsistently - why can't we build into certain accounts with the same script/bulk upload that reads the same csv?

2019-09-23 Thread Google Ads API Forum Advisor Prod
Hi Robert,

Thanks for posting your concern.

It appears that the issue was encountered in 'Bulk Uploads' of Google Ads 
scripts. However, this forum is dedicated for the AdWords API and Google Ads 
API related concerns/issues.

You can post your concern on Google Ads Scripts Forum and let's continue our 
conversation there to resolve the issue.

Regards,
Ejay
Google Ads API Team
ref:_00D1U1174p._5001UHHimB: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 
"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/YppX10PYBMD500ervJ-n7aSlGAgvmA6Bz5AQ%40sfdc.net.


BulkUpload script working/failing inconsistently - why can't we build into certain accounts with the same script/bulk upload that reads the same csv?

2019-09-23 Thread Robert Knopfler
We have multiple CIDs that we are attempting to build campaigns into via 
BulkUpload, and in one case we're getting an error *"No header row was 
found for this spreadsheet" (MCC: 730-277-0792 CID: 316-467-9480)* and in 
another case, using a script that reads (from Google Drive) and uploads the 
same exact csv file, we get no error *(MCC: 839-438-5313 CID: 221-354-2158)*. 
The only difference here is MCC and CID here.

Why is this inconsistency occurring? Was there an update made on your side 
that may have triggered this? Please help, this is happening for several 
campaigns but not for others

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/96816cb9-91a7-4ade-9903-aa1514d62ef6%40googlegroups.com.


RE: Bulk upload

2019-08-15 Thread Google Ads API Forum Advisor Prod
Hi Alexander,

Unfortunately, the bulk upload tool in the UI is not available in either 
AdWords API or Google Ads API.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UEJANC: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 
"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/jXDsG0PWA8T1005UBRs627QaeMAdxYVh9i5Q%40sfdc.net.


Bulk upload

2019-08-15 Thread Alexander
Is there a way to access the "bulk upload" from Google Ads UI through 
adwords API ( or the new ads API) ?
In the UI it is available at Tools > Bulk Actions > Uploads

I know that "bulk upload" is possible in Google Ads Scripts, but is it also 
possible in adwords API or 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a083e2c7-5646-4cd4-aaec-458230813f3a%40googlegroups.com.


Re: Bulk upload negative keywords

2018-11-22 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Costantin,

Your concern appears to be in the Google Ads UI. With this said, you could 
open your concern to the Advertiser's Community Forum 
<https://www.en.advertisercommunity.com/t5/Google-Ads/ct-p/google-ads#> as 
the product experts are better equipped in answering your concerns.

Regards,
Dannison
AdWords API Team


On Friday, November 23, 2018 at 12:45:22 AM UTC+8, cos...@gmail.com wrote:
>
> I'm trying to bulk upload negative keywords via the google ads -> tools -> 
> bulk upload section. I need to do it that way and NOT with the 
> adwords editor.
>
>
> I've tried adding the negative keyword as `-negativeKeyword` but it would 
> get added as a normal one with a minus in front. I've also tried to change 
> the match type column value to "Negative Phrase" and other variations like 
> "negative broad" uppercase etc but I get that it's invalid for the Type 
> column.
>
> How can I do this?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9896b230-84c7-446d-8bd3-bbb76730ad91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bulk upload negative keywords

2018-11-22 Thread cosbgn
I'm trying to bulk upload negative keywords via the google ads -> tools -> 
bulk upload section. I need to do it that way and NOT with the 
adwords editor.


I've tried adding the negative keyword as `-negativeKeyword` but it would 
get added as a normal one with a minus in front. I've also tried to change 
the match type column value to "Negative Phrase" and other variations like 
"negative broad" uppercase etc but I get that it's invalid for the Type 
column.

How can I do this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/34918168-2d93-4b2a-8a57-384101a9fbdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Cannot properly create FeedItemAdGroupTarget in bulk upload with negative reference keys (PHP v201806)

2018-08-07 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Bryan,

Could you tell if you are encountering any errors when running the 
FeedItemTargetService 
<https://developers.google.com/adwords/api/docs/reference/v201806/FeedItemTargetService>?
 
Also, could you clarify if you are using the BatchJobService 
<https://developers.google.com/adwords/api/docs/reference/v201806/BatchJobService>
 for 
this operation? If so, to better investigate your issue, could you provide 
your batch job ids as well as your clientCusttomerId? 

If not, could you provide the complete SOAP request and response logs when 
you encountered the error? Please reply via *Reply privately to author*.

Thanks and regards,
Luis
AdWords API Team

On Wednesday, August 8, 2018 at 4:48:25 AM UTC+8, Bryan wrote:
>
> Hi, I have been working on upgrading existing working code to the latest 
> PHP API library (v201806), and a part of this development work is dealing 
> with creating FeedItemAdGroupTarget's for new ad groups that I am 
> uploading. When using a negative reference key on the FeedItemAdGroupTarget 
> for both the feedItemId and the adGroupId, it looks like the FeedItem gets 
> created but without any targeting. The order in the bulk upload is Ad Group 
> > FeedItem > FeedItemAdGroupTarget. Please let me know what other 
> information you may need to help.
>
> 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/89938fcb-4aae-4372-b66c-8c2e23ee0a25%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Cannot properly create FeedItemAdGroupTarget in bulk upload with negative reference keys (PHP v201806)

2018-08-07 Thread Bryan
Hi, I have been working on upgrading existing working code to the latest 
PHP API library (v201806), and a part of this development work is dealing 
with creating FeedItemAdGroupTarget's for new ad groups that I am 
uploading. When using a negative reference key on the FeedItemAdGroupTarget 
for both the feedItemId and the adGroupId, it looks like the FeedItem gets 
created but without any targeting. The order in the bulk upload is Ad Group 
> FeedItem > FeedItemAdGroupTarget. Please let me know what other 
information you may need to help.

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/5cf4fcfe-e4c4-41af-9988-f16db5527f26%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: adding labels to ad bulk upload

2018-07-10 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Richard,

I understand you have some concerns related to AdWords scripts. On this 
forum, we will discuss concerns related to AdWords API only. I would 
recommend you to post your question on the AdWords scripts forum 
. 

Regards,
Sai Teja, 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/f61efeae-f3cd-455c-9d55-8b50c90590ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


adding labels to ad bulk upload

2018-07-10 Thread richard
Hi,

Do you have it in your scope to make it possible to within the bulk upload 
(ad) also include a label to the ads? currently, it is not supported?

https://developers.google.com/adwords/scripts/docs/features/bulk-upload-entities

This feature would simplify a lot when working with the API across multiple 
accounts in regards to ads.

Thanks,

Rich

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/69f15962-5de6-4c88-8ea3-8a094bbfcf55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


bulk upload html5 banners to GDN

2014-12-29 Thread Eyal Filiba
Hey All,

I need to upload a bulk of HTML5 display ads to GDN.

I tried to do it with Adwords editor. However, I don't see in the wizard an 
option to add a new display ad the option to select a zip file.

how can I bulk upload html banners to GDN via the API ?

Thanks,

Eyal

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/58a94c02-5734-45d9-9a32-194c87503867%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: bulk upload html5 banners to GDN

2014-12-29 Thread Michael Cloonan (AdWords API Team)
Hello,

The AdWords API does not support generic HTML5 ads for use in GDN 
currently. Please watch our blog http://googleadsdeveloper.blogspot.com/ 
for all new feature announcements.

Regards,
Mike, AdWords API Team

On Friday, December 26, 2014 9:58:42 AM UTC-5, Eyal Filiba wrote:

 Hey All,

 I need to upload a bulk of HTML5 display ads to GDN.

 I tried to do it with Adwords editor. However, I don't see in the wizard 
 an option to add a new display ad the option to select a zip file.

 how can I bulk upload html banners to GDN via the API ?

 Thanks,

 Eyal


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0718fd83-e191-4040-86dc-45ce60c9181e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bulk Upload not working in production only

2011-06-21 Thread David Torres
Hi,

Can you share request ids for your logs? I'll be glad to investigate
in our side having your request ids.

Best,

-David Torres - AdWords API Team

On Jun 16, 7:23 am, Pulkit pul...@gmail.com wrote:
 Hi,

 I just checked the staus of job it shows cmpleted but still not able
 to see even a single add in live adwords account. Still the same
 problem for bulk upload every thing works fine when i linked my
 application to google sandbox but when i linked it to live environment
 bulk upload stop working.

 On Jun 15, 4:58 pm, Pulkit pul...@gmail.com wrote:

  Hi,

  I am facing a problem with bulk upload.
  I have an MCC account and an adwords client account. I linked both the
  accounts and all the billing information in both the accounts are
  perfect. My developer token is approved.

  Now i have an application which is designed to upload bulk ads keeping
  all the restrictions imposed by google in my mind. i tested it in
  google adwords sand-box it works perfectly. But when i tried it to
  test it with google live accounts i am not able to see even a single
  ad in live account. Problem is i am not receiving any error.

  The script which i wrote has exception handling mechanism so if there
  is any error it should be displayed by script. I am using PHP for
  writing script and google adwords PHPLibrary.

  Code looks like this :

  try {
          $user = new AdWordsUser();
          $user-LogDefaults();
          $bulkMutateJobService = $user-GetBulkMutateJobService('v201008');
           GOOGLE CODE TO upload bulk records
  
          $message = Script finished uploads of ads successfully please
  check your results in Adwords UI.\n Total upload count is
  $upload_count. ;

        }
  catch (Exception $e) {
     print $e-getMessage();
    $message = Script dosen\'t finished uploading of all ads but
  because of some error it stopped working error is : \n .$e-

  getMessage(). \n Total upload count is $upload_count. ;
  }

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Re: Bulk Upload not working in production only

2011-06-16 Thread Pulkit
Hi,

I just checked the staus of job it shows cmpleted but still not able
to see even a single add in live adwords account. Still the same
problem for bulk upload every thing works fine when i linked my
application to google sandbox but when i linked it to live environment
bulk upload stop working.

On Jun 15, 4:58 pm, Pulkit pul...@gmail.com wrote:
 Hi,

 I am facing a problem with bulk upload.
 I have an MCC account and an adwords client account. I linked both the
 accounts and all the billing information in both the accounts are
 perfect. My developer token is approved.

 Now i have an application which is designed to upload bulk ads keeping
 all the restrictions imposed by google in my mind. i tested it in
 google adwords sand-box it works perfectly. But when i tried it to
 test it with google live accounts i am not able to see even a single
 ad in live account. Problem is i am not receiving any error.

 The script which i wrote has exception handling mechanism so if there
 is any error it should be displayed by script. I am using PHP for
 writing script and google adwords PHPLibrary.

 Code looks like this :

 try {
         $user = new AdWordsUser();
         $user-LogDefaults();
         $bulkMutateJobService = $user-GetBulkMutateJobService('v201008');
          GOOGLE CODE TO upload bulk records
 
         $message = Script finished uploads of ads successfully please
 check your results in Adwords UI.\n Total upload count is
 $upload_count. ;

       }
 catch (Exception $e) {
    print $e-getMessage();
   $message = Script dosen\'t finished uploading of all ads but
 because of some error it stopped working error is : \n .$e-







 getMessage(). \n Total upload count is $upload_count. ;
 }

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


Bulk Upload not working in production only

2011-06-15 Thread Pulkit
Hi,

I am facing a problem with bulk upload.
I have an MCC account and an adwords client account. I linked both the
accounts and all the billing information in both the accounts are
perfect. My developer token is approved.

Now i have an application which is designed to upload bulk ads keeping
all the restrictions imposed by google in my mind. i tested it in
google adwords sand-box it works perfectly. But when i tried it to
test it with google live accounts i am not able to see even a single
ad in live account. Problem is i am not receiving any error.

The script which i wrote has exception handling mechanism so if there
is any error it should be displayed by script. I am using PHP for
writing script and google adwords PHPLibrary.

Code looks like this :

try {
$user = new AdWordsUser();
$user-LogDefaults();
$bulkMutateJobService = $user-GetBulkMutateJobService('v201008');
 GOOGLE CODE TO upload bulk records

$message = Script finished uploads of ads successfully please
check your results in Adwords UI.\n Total upload count is
$upload_count. ;

  }
catch (Exception $e) {
   print $e-getMessage();
  $message = Script dosen\'t finished uploading of all ads but
because of some error it stopped working error is : \n .$e-
getMessage(). \n Total upload count is $upload_count. ;
}

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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


AdWords API Bulk upload

2009-08-03 Thread sree...@cybage.com

Hi All,
I am using java client to upload my campaigns/ad groups/keywords into
adwords. Is there  any way to upload multiple campaigns/keywords in a
single call ?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



AdWords API Re: Bulk upload

2009-08-03 Thread AdWords API Advisor

Hello,

 There's no way to create both a campaign and a keyword in the same
SOAP call. You need to make multiple SOAP calls to achieve this. If
you want to add multiple objects of the same type though, then yes,
you can do that in a single SOAP call. If you want to add multiple
campaigns using v13, for instance, you can use the addCampaignList()
method:

  
http://code.google.com/apis/adwords/docs/developer/CampaignService.html#addCampaignList

Cheers,
-Jeff Posnick, AdWords API Team


On Aug 3, 4:51 am, sree...@cybage.com sree...@cybage.com wrote:
 Hi All,
 I am using java client to upload my campaigns/ad groups/keywords into
 adwords. Is there  any way to upload multiple campaigns/keywords in a
 single call ?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---