Dear Umesh, The SOAP request/response for the REMOVE operation looks like the following:
2015-07-27 12:43:18,762 6519 [main] INFO c.g.a.a.a.l.c.A.requestInfoLogger - Request made: Service: "MutateJobServiceInterfacePort" Method: "getResult" URL: "https://adwords.google.com/api/adwords/cm/v201502/MutateJobService" 2015-07-27 12:43:18,764 6521 [main] INFO c.g.a.a.a.l.c.A.soapXmlLogger - SOAP Request: <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header> <ns1:RequestHeader xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201502" soapenv:mustUnderstand="0"> <ns1:clientCustomerId>xxxxxx</ns1:clientCustomerId> <ns1:developerToken>ppKMvCsaLmArHkpXIgKyrQ</ns1:developerToken> <ns1:userAgent>xxxxxx (AwApi-Java, AdWords-Axis/2.1.0, Common-Java/2.1.0, Axis/1.4, Java/1.8.0_31, maven)</ns1:userAgent> <ns1:validateOnly>false</ns1:validateOnly> <ns1:partialFailure>false</ns1:partialFailure> </ns1:RequestHeader> </soapenv:Header> <soapenv:Body> <getResult xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <selector xmlns:ns2="https://adwords.google.com/api/adwords/cm/v201502" xsi:type="ns2:BulkMutateJobSelector"> <ns2:jobIds xsi:type="xsd:long">5634999575339985231</ns2:jobIds> </selector> </getResult> </soapenv:Body> </soapenv:Envelope> 2015-07-27 12:43:18,764 6521 [main] INFO c.g.a.a.a.l.c.A.soapXmlLogger - SOAP Response: <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <ResponseHeader xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <requestId>00051bd9058cd4910ac431057f0c6ee9</requestId> <serviceName>MutateJobService</serviceName> <methodName>getResult</methodName> <operations>1</operations> <responseTime>82</responseTime> </ResponseHeader> </soap:Header> <soap:Body> <getResultResponse xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <rval> <SimpleMutateResult> <results> <AdGroupBidModifier> <campaignId>xxxxxx</campaignId> <adGroupId>xxxxxx</adGroupId> <criterion xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Platform"> <id>30001</id> <type>PLATFORM</type> <Criterion.Type>Platform</Criterion.Type> <platformName>HighEndMobile</platformName> </criterion> </AdGroupBidModifier> </results> </SimpleMutateResult> </rval> </getResultResponse> </soap:Body> </soap:Envelope> But trying to query the deleted value afterwards causes this... 2015-07-27 12:49:27,665 4887 [main] INFO c.g.a.a.a.l.c.A.requestInfoLogger - Request made: Service: "AdGroupBidModifierServiceInterfacePort" Method: "get" URL: "https://adwords.google.com/api/adwords/cm/v201502/AdGroupBidModifierService" 2015-07-27 12:49:27,688 4910 [main] INFO c.g.a.a.a.l.c.A.soapXmlLogger - SOAP Request: <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header> <ns1:RequestHeader xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201502" soapenv:mustUnderstand="0"> <ns1:clientCustomerId>xxxxxx</ns1:clientCustomerId> <ns1:developerToken>ppKMvCsaLmArHkpXIgKyrQ</ns1:developerToken> <ns1:userAgent>xxxxxx (AwApi-Java, AdWords-Axis/2.1.0, Common-Java/2.1.0, Axis/1.4, Java/1.8.0_31, maven)</ns1:userAgent> <ns1:validateOnly>false</ns1:validateOnly> <ns1:partialFailure>false</ns1:partialFailure> </ns1:RequestHeader> </soapenv:Header> <soapenv:Body> <get xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <selector> <fields>CampaignId</fields> <fields>AdGroupId</fields> <fields>BidModifier</fields> <fields>CriteriaType</fields> <fields>Id</fields> <predicates> <field>AdGroupId</field> <operator>EQUALS</operator> <values>xxxxxx</values> </predicates> <predicates> <field>Id</field> <operator>EQUALS</operator> <values>30001</values> </predicates> <paging> <startIndex>0</startIndex> <numberResults>9999</numberResults> </paging> </selector> </get> </soapenv:Body> </soapenv:Envelope> 2015-07-27 12:49:27,688 4910 [main] INFO c.g.a.a.a.l.c.A.soapXmlLogger - SOAP Response: <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <ResponseHeader xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <requestId>00051bd91b8845900ac46204fd0ef106</requestId> <serviceName>AdGroupBidModifierService</serviceName> <methodName>get</methodName> <operations>1</operations> <responseTime>209</responseTime> </ResponseHeader> </soap:Header> <soap:Body> <getResponse xmlns="https://adwords.google.com/api/adwords/cm/v201502"> <rval> <totalNumEntries>1</totalNumEntries> <Page.Type>AdGroupBidModifierPage</Page.Type> <entries> <campaignId>xxxxxx</campaignId> <adGroupId>xxxxxx</adGroupId> <criterion xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Platform"> <id>30001</id> <type>PLATFORM</type> <Criterion.Type>Platform</Criterion.Type> </criterion> <bidModifier>1.100000023841858</bidModifier> </entries> </rval> </getResponse> </soap:Body> </soap:Envelope> Best regards Phillip Am Freitag, 24. Juli 2015 22:40:06 UTC+2 schrieb Umesh Dengale: > > Hello, > > Could you provide SOAP request and response log? It will help us to look > into more details. > > Thanks, > Umesh, AdWords API Team. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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/0c913b23-7204-447f-90c7-d6e2d73719c1%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.