Hi,

Unfortunately we don't have any v200909 SOAP XML samples available at
the moment.  Here is a brief sample I just created that sets the
schedule of a campaign, so that it only shows on Mondays from 12-6 and
on Tuesday from 8-8:30.

Best,
- Eric Koleda, AdWords API Team

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/
envelope/" xmlns:v20="https://adwords.google.com/api/adwords/cm/
v200909" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
   <soapenv:Header>
      <v20:RequestHeader>
         <v20:authToken>...</v20:authToken>
         <v20:clientEmail>...</v20:clientEmail>
         <v20:developerToken>...</v20:developerToken>
         <v20:userAgent>...</v20:userAgent>
      </v20:RequestHeader>
   </soapenv:Header>
   <soapenv:Body>
      <mutate xmlns="https://adwords.google.com/api/adwords/cm/
v200909">
         <operations>
            <operator>SET</operator>
            <operand xsi:type="AdScheduleTargetList">
               <campaignId>...</campaignId>
               <targets xsi:type="AdScheduleTarget">
                  <dayOfWeek>MONDAY</dayOfWeek>
                  <startHour>12</startHour>
                  <startMinute>ZERO</startMinute>
                  <endHour>18</endHour>
                  <endMinute>THIRTY</endMinute>
                  <bidMultiplier>1</bidMultiplier>
               </targets>
               <targets xsi:type="AdScheduleTarget">
                  <dayOfWeek>TUESDAY</dayOfWeek>
                  <startHour>8</startHour>
                  <startMinute>ZERO</startMinute>
                  <endHour>8</endHour>
                  <endMinute>THIRTY</endMinute>
                  <bidMultiplier>1</bidMultiplier>
               </targets>
            </operand>
         </operations>
      </mutate>
   </soapenv:Body>
</soapenv:Envelope>

On Jun 24, 5:04 pm, RedZoneGlobal <ke...@redzoneglobal.com> wrote:
> Can someone post a working XML Sample, so we can change our processes
> from V13 -> V200909?
> I searched the Adwords API Forums, but couldn't find any sample input
> XML to the API.
> We use a SOAP control, so we have to build the packet (semi
> manually).
>
> We only set the schedule for a single campaign at a time through the
> API.
>
> Thanks in advance!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

Reply via email to