I am attempting to import 'removed' Keyword data using the ReportDefinition KEYWORDS_PERFORMANCE_REPORT.
I tried sending requests both without any filters, as well as with the Predicate:
Predicate keywordPredicate = new Predicate
{
field = "Status",
@operator = PredicateOperator.EQUALS,
values = new string[] { "REMOVED" },
};
For the first request I sent without any filters, I was successfully able to import all active Keywords, but was not returned any Keywords with the status 'removed'.
The second request returned an empty data set.
I was trying to find some documentation on deleted/removed keywords, but was unable to find anything that would explain the behavior I am experiencing :\
Any help would be appreciated!