Last updated 1 year ago
Update asset properties for assets in specified collection
export type UpdateCollectionAssetsProps = { collectionId: string; properties: BasicAnyObject; // JSON including all properties that should be updated with updated values }
const asset= await assetlayer.assets.update({ properties: {key1:value1, key2:value2}, collectionId: 'collectionId' });
type ReturnType = string;