Skip to main content

system.mes.equipment.deleteEquipmentProperty

Description

Deletes an Equipment Properties record by its ID or name. This cannot delete an equipment property with references to it.

Permissions

This method requires the EQUIPMENT.WRITE.DELETE permission.

Syntax

system.mes.equipment.deleteEquipmentProperty(idOrName)

Parameters

ParameterTypeNullableDescription
idOrNameStringFalseThe ID or name of the equipment property to delete.

Returns

If successful, an ApiResponse Object is returned with the success bool set True. If the property being deleted has a reference, an ApiResponse Object is returned with details about the encountered error.

NameTypeDescription
successBooleanIndicates if the delete was successful.
messageStringThe reason why the deletion was successful or unsuccessful.
dataStringThe data associated with the deletion.
errorStringThe errors associated with the deletion.

Code Examples

# Delete by name
system.mes.equipment.deleteEquipmentProperty('MaxFlowRate')

# Delete by ID
system.mes.equipment.deleteEquipmentProperty('01ARZ3NDEKTSV4RRFFQ69G5FAV')