LedeWire SDK API Reference
    Preparing search index...

    Interface SellerContentSearchRequest

    Search criteria for seller content search. At least one field must be supplied. All supplied fields must match (AND logic).

    interface SellerContentSearchRequest {
        external_identifier?: string;
        metadata?: Record<string, unknown>;
        title?: string;
        uri?: string;
    }
    Index

    Properties

    external_identifier?: string

    Exact match against the content's external identifier. Use the full formatted value as it appears in ContentResponse.external_identifier, e.g. 'vimeo:123456789'.

    metadata?: Record<string, unknown>

    Exact key/value pairs to AND-match against content metadata.

    title?: string

    Case-insensitive partial match against the content title.

    uri?: string

    Case-insensitive partial match against the content URI (external_ref content only).