system.mes.equipment.deleteAllEquipmentProperties
Description
Deletes multiple Equipment Properties records by their IDs or names.
Permissions
This method requires the EQUIPMENT.WRITE.DELETE permission.
Syntax
system.mes.equipment.deleteAllEquipmentProperties(idsOrNames)
Parameters
| Parameter | Type | Nullable | Description |
|---|---|---|---|
idsOrNames | String[] | False | An array of equipment property IDs or names to delete. |
Returns
If successful, an ApiResponse Object is returned with the success bool set True. If any of the properties being deleted have references, an ApiResponse Object is returned with details about the encountered error.
| Name | Type | Description |
|---|---|---|
success | Boolean | Indicates if the delete was successful. |
message | String | The reason why the deletion was successful or unsuccessful. |
data | String | The data associated with the deletion. |
error | String | The errors associated with the deletion. |
Code Examples
# Delete by name
system.mes.equipment.deleteAllEquipmentProperties(['MaxFlowRate', 'MinFlowRate'])
# Delete by ID
system.mes.equipment.deleteAllEquipmentProperties(['01ARZ3NDEKTSV4RRFFQ69G5FAV', '01ARZ3NDEKTSV4RRFFQ69G5FAW'])