Re: Create real estate feed google ads api

2019-12-09 Thread Adhub manager
Sorry i seemed to have posted the same question, it worked, thank you for 
your time!

On Monday, December 9, 2019 at 9:34:33 PM UTC+1, adsapiforumadvisor wrote:
>
> Hi,
>
> Thank you for reaching out. You can mimic this Java example 
> 
>  or 
> follow this guide 
> 
>  for 
> performing this action. Mapping to the RealEstatePlaceholderField 
> 
>  
> should allow the proper type to be set. If this doesn't work, please share 
> your 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 here 
> 
> .
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UOE7Fk: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/1496ed74-5531-404d-8a46-036ae5273f0f%40googlegroups.com.


RE: Create real estate feed google ads api

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

Thank you for reaching out. You can mimic this Java example or follow this 
guide for performing this action. Mapping to the RealEstatePlaceholderField 
should allow the proper type to be set. If this doesn't work, please share your 
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 
here.

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


Re: Create real estate feed google ads api

2019-12-09 Thread Adhub manager


On Monday, October 21, 2019 at 1:10:10 AM UTC+2, Adhub manager wrote:
>
> Hello!
>
> Ive been trying to copy a real estate feed with the google ads nuget 
> package for c# 
>
> [image: feeedquestion.PNG]
>
> My approach is 
>
>
>
>1. Get feed from query : "SELECT feed.attributes FROM feed WHERE 
>feed.id = 'ID'"
>2. then i create a new feed with the data i get returned however this 
>doesnt get a type of Dynamic display ad feed (RealEstate) as seen in the 
>screensho, the attributes are all correct and looks fine.
>
>
> What am i missing to be able to specify the type?
>
>
>
>
> Thank you for taking your time and providing answers it worked like a 
> charm, sorry for the late reply other business came up :)
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/01b5c0b6-a1ba-4e3a-a475-970da1d2f5d4%40googlegroups.com.


RE: Create real estate feed google ads api

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

You will be able to set the schedules to the FeedItems using the 
AdScheduleInfo. Please find the sample code snippet in Java as a reference.

AdScheduleInfo adScheduleInfo = AdScheduleInfo.newBuilder()
.setDayOfWeek(DayOfWeek.FRIDAY)
.setStartHour(Int32Value.of(0))
.setStartMinute(MinuteOfHour.ZERO)
.setEndHour(Int32Value.of(23))
.setEndMinute(MinuteOfHour.ZERO)
.build();

ExtensionFeedItem extensionFeedItem = ExtensionFeedItem.newBuilder()
.setSitelinkFeedItem(sitelink)
.addAdSchedules(adScheduleInfo)
.setStartDateTime(StringValue.of("2018-02-01 14:34:30"))
.setDevice(FeedItemTargetDevice.MOBILE)
.setStatus(FeedItemStatus.ENABLED)
.build();

Could you please give this a try and let me know if you have any issues?

Thanks,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UKNvL8: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/glSWL0PZQBC100Muc7WrEjSci7q08p5o1Xhw%40sfdc.net.


Re: Create real estate feed google ads api

2019-10-21 Thread Adhub manager

>
> I figured out i had to create a feed mapping for my feed and add the id's 
> i got as a placeholder for the feed then the type showed up and i could 
> select it in campaigns.
>
> However i run into another problem when using the google ads api c# 
package i cant find any information on FeeditemScheduler 

> feedservices scheduling in Adwords but there is no equivilant in google 
> ads api, so how do i set the feed scheduling to http link ?
>
> https://developers.google.com/adwords/api/docs/guides/feed-services#scheduling

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a446ef66-10a4-4384-9578-406c91e7%40googlegroups.com.


Re: Create real estate feed google ads api

2019-10-21 Thread Adhub manager
This is for google 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/6c15a8b3-dd14-4267-9c1f-e5351f35a890%40googlegroups.com.