Has anybody tried listing deleted categories? We’ve tried with the API Console, PHP, and C#, and it always returns an empty set.
<?php
$filter = new KalturaCategoryFilter();
$filter->statusEqual = KalturaCategoryStatus::DELETED;
$pager = new KalturaFilterPager();
try {
$result = $client->category->listAction($filter, $pager);
var_dump($result);
} catch (Exception $e) {
echo $e->getMessage();
}
?>