activateCollection()

Activate the specified collection

Parameters

export type ActivateCollectionProps = {
    collectionId: string;
}

Examples

const success = await assetlayer.collections.activateCollection({
    collectionId: 'collectionId'
});

Return Types

type ReturnType = boolean;

Last updated