Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

Retrieve deleted mediaEntry via API

$
0
0

Hi,

You can do:

$client = new KalturaClient($config);
$filter = new KalturaBaseEntryFilter();
$filter->statusEqual = KalturaEntryStatus::DELETED;
$pager = null;
$result = $client->baseEntry->listAction($filter, $pager);

The above is an example with our PHP clientlib but can be done with any of them of course.


Viewing all articles
Browse latest Browse all 7410

Trending Articles