Update asset properties for specified assets
export type UpdateAssetProps = { assetIds: string[]; properties: BasicAnyObject; // JSON including all properties that should be updated with updated values }
const assets = await assetlayer.assets.updateAssets({ properties: {key1:value1, key2:value2}, assetIds: ['assetId_1', 'assetId_2'] });
type ReturnType = string[];
Last updated 1 year ago