reset
Performs a reset of the device identified by device ID.
Key | Description | Format | Cardinality |
|---|---|---|---|
message | Optional message to display while action is running. | text | 0..1 |
retry | Controls whether or not the option to retry the action should be available. | boolean (false) | 0..1 |
device | Identifier of the device to reset. For example, CAM.1. Use `$deviceId` for unspecific device ID. | text | 1 |
Example 43. Example
<reset>
<deviceId>CAM.1</deviceId>
</reset>
<reset>
<deviceId>$deviceId</deviceId>
</reset>
<!-- reset with message, `{}` will be replaced with door name -->
<reset message="reseting {}...">
<deviceId>CAM.1</deviceId>
</reset>
<!-- reset with option to retry -->
<reset retry="Unreset">
<deviceId>CAM.1</deviceId>
</reset>