Make video invisible for listings

Is there any possibility to make some entries ‘invisible’ for listings by API? Lets say i have entry which is available when i call baseEntry.list but i want to have another entry which will not be visible on baseEntry.list result?

Hello @pmaslak,

With the content entitlement mechanism, you can set entries so that only certain users will be able to fetch the data (based on their userId, KS privileges configuration and category association). For that, see https://developer.kaltura.com/api-docs/Secure_Control_and_Govern/Content-Entitlements-Privacy-Enforcement.html

If you merely want to hide them in the Kaltura UI I/Fs (KMC and KMS), you can set the displayInSearch member on the entry object. Optional enums are:

class KalturaEntryDisplayInSearchType extends KalturaEnumBase
{
const SYSTEM = -1;
const NONE = 0;
const PARTNER_ONLY = 1;
const KALTURA_NETWORK = 2;
}