getSlotCollectionIds()

Get the collectionIds for a given slot

Parameters

export type GetSlotCollectionsProps = { 
    slotId: string; 
    includeDeactivated?: boolean; // if true, response includes deactivated collections
};

Examples

const collectionIds = await assetlayer.slots.getSlotCollections({
    slotId: 'slotId'
});

Return Types

type ReturnType = string[];

Alternatives

pagecollections()

Last updated