For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update an Item's Property

Use this method to update the value of an item's property.

Usage in your script

const updatedItem = await alturaItem.updateProperty(PROPERTY_NAME, PROPERTY_VALUE);
const updatedItem: IAlturaItem = await alturaItem.updateProperty(PROPERTY_NAME, PROPERTY_VALUE);

Parameters

Parameter
Type
Required
Description

PROPERTY_NAME

String

Yes

The name (key) of the property you want to change

PROPERTY_VALUE

String

Yes

The new value you want to set the property to

Last updated