Hi Josh,
I was trying this out on a non-test account. Here is the request and response. I created and deleted the feed today so maybe that explains it? I did play around with the dateTimeRange and tried using a window that would only have the feed item deletion but had no luck. The feed item was removed at 13:57:44 GMT and the requestId from the SOAP response is 0004ff04f52197300a4c12456c007ded. Let me know if you need additional information.
CustomerSyncService Request:<soapenv:Envelope xmlns:soapenv="
http://schemas.xmlsoap.org/soap/envelope/" xmlns:v20="
https://adwords.google.com/api/adwords/ch/v201406" xmlns:v201="
https://adwords.google.com/api/adwords/cm/v201406">
<soapenv:Header>
<v20:RequestHeader>
<v201:clientCustomerId>
848-879-3985</v201:clientCustomerId>
<v201:developerToken>*****</v201:developerToken>
<v201:userAgent>*****</v201:userAgent>
<v201:validateOnly>false</v201:validateOnly>
<v201:partialFailure>false</v201:partialFailure>
</v20:RequestHeader>
</soapenv:Header>
<soapenv:Body>
<v20:get>
<v20:selector>
<v20:dateTimeRange>
<v201:min>20140725 000000 UTC</v201:min>
<v201:max>20140725 235959 UTC</v201:max>
</v20:dateTimeRange>
<v20:campaignIds>209752968</v20:campaignIds>
<v20:feedIds>18907067</v20:feedIds>
</v20:selector>
</v20:get>
</soapenv:Body>
</soapenv:Envelope>
CustomerSyncService Response:<soap:Envelope xmlns:soap="
http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<ns2:ResponseHeader xmlns:ns2="
https://adwords.google.com/api/adwords/ch/v201406" xmlns="
https://adwords.google.com/api/adwords/cm/v201406">
<requestId>0004ff07bb17c9f80a42bfa2a60010b4</requestId>
<serviceName>CustomerSyncService</serviceName>
<methodName>get</methodName>
<operations>0</operations>
<responseTime>223</responseTime>
</ns2:ResponseHeader>
</soap:Header>
<soap:Body>
<ns2:getResponse xmlns="
https://adwords.google.com/api/adwords/cm/v201406" xmlns:ns2="
https://adwords.google.com/api/adwords/ch/v201406">
<ns2:rval>
<ns2:changedCampaigns>
<ns2:campaignId>209752968</ns2:campaignId>
<ns2:campaignChangeStatus>FIELDS_UNCHANGED</ns2:campaignChangeStatus>
<ns2:removedFeeds>18907067</ns2:removedFeeds>
<ns2:campaignTargetingChanged>false</ns2:campaignTargetingChanged>
</ns2:changedCampaigns>
<ns2:changedFeeds>
<ns2:feedId>18907067</ns2:feedId>
<ns2:feedChangeStatus>FIELDS_UNCHANGED</ns2:feedChangeStatus>
</ns2:changedFeeds>
<ns2:lastChangeTimestamp>20140725 143508 UTC</ns2:lastChangeTimestamp>
</ns2:rval>
</ns2:getResponse>
</soap:Body>
</soap:Envelope>
When I make a call to FeedItemService to get the feed items I see that one is removed:
FeedItemService Request:<soapenv:Envelope xmlns:soapenv="
http://schemas.xmlsoap.org/soap/envelope/" xmlns:v20="
https://adwords.google.com/api/adwords/cm/v201406">
<soapenv:Header>
<v20:RequestHeader>
<v20:clientCustomerId>
848-879-3985</v20:clientCustomerId>
<v20:developerToken>*****</v20:developerToken>
<v20:userAgent>*****</v20:userAgent>
<v20:validateOnly>false</v20:validateOnly>
<v20:partialFailure>true</v20:partialFailure>
</v20:RequestHeader>
</soapenv:Header>
<soapenv:Body>
<v20:get>
<v20:selector>
<v20:fields>FeedItemId</v20:fields>
<v20:fields>Status</v20:fields>
<v20:predicates>
<v20:field>FeedId</v20:field>
<v20:operator>EQUALS</v20:operator>
<v20:values>18907067</v20:values>
</v20:predicates>
<v20:dateRange>
<v20:min>20140725</v20:min>
<v20:max>20140726</v20:max>
</v20:dateRange>
</v20:selector>
</v20:get>
</soapenv:Body>
</soapenv:Envelope>
FeedItemService Response:<soap:Envelope xmlns:soap="
http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<ResponseHeader xmlns="
https://adwords.google.com/api/adwords/cm/v201406">
<requestId>0004ff051bc4b4300a4c12456c007ded</requestId>
<serviceName>FeedItemService</serviceName>
<methodName>get</methodName>
<operations>0</operations>
<responseTime>237</responseTime>
</ResponseHeader>
</soap:Header>
<soap:Body>
<getResponse xmlns="
https://adwords.google.com/api/adwords/cm/v201406">
<rval>
<totalNumEntries>2</totalNumEntries>
<Page.Type>FeedItemPage</Page.Type>
<entries>
<feedId>18907067</feedId>
<feedItemId>783546139</feedItemId>
<status>REMOVED</status>
</entries>
<entries>
<feedId>18907067</feedId>
<feedItemId>783546142</feedItemId>
<status>ENABLED</status>
</entries>
</rval>
</getResponse>
</soap:Body>
</soap:Envelope>
Thanks,
Stacie