@adcp/client API Reference - v3.3.3
    Preparing search index...

    Interface ManageCreativeAssetsResponse

    interface ManageCreativeAssetsResponse {
        success: boolean;
        action: string;
        results?: {
            uploaded?: CreativeLibraryItem[];
            listed?: {
                creatives: CreativeLibraryItem[];
                total_count: number;
                pagination?: {
                    offset: number;
                    limit: number;
                    has_more: boolean;
                    next_cursor?: string;
                };
            };
            updated?: CreativeLibraryItem;
            assigned?: { creative_id: string; assignments: string[] }[];
            unassigned?: { creative_id: string; removed_from: string[] }[];
            deleted?: { creative_id: string; archived: boolean }[];
        };
        errors?: { creative_id?: string; error_code: string; message: string }[];
    }
    Index

    Properties

    success: boolean
    action: string
    results?: {
        uploaded?: CreativeLibraryItem[];
        listed?: {
            creatives: CreativeLibraryItem[];
            total_count: number;
            pagination?: {
                offset: number;
                limit: number;
                has_more: boolean;
                next_cursor?: string;
            };
        };
        updated?: CreativeLibraryItem;
        assigned?: { creative_id: string; assignments: string[] }[];
        unassigned?: { creative_id: string; removed_from: string[] }[];
        deleted?: { creative_id: string; archived: boolean }[];
    }
    errors?: { creative_id?: string; error_code: string; message: string }[]