Last updated 1 year ago
Returns assetsIds from specified collection
type GetCollectionAssetsProps = { collectionId: string; serials?: string; // if specified, response only includes assets with serial numbers in specified range (e.g. 1-10, 15, 20-25) }
const assetIds = await assetlayer.collections.getCollectionAssetIds({ collectionId: 'collectionId', serials: '0-5' });
type ReturnType = string[];