less than a minute
MQTT: ia/<customerID>/<location>/<AssetID>/modifyState
For Kafka just switch the /
character with a .
modifyState
is generated to modify the state from the starting timestamp to the end timestamp. You can find a list of all supported states here.
key | data type | description |
---|---|---|
timestamp_ms | int32 | unix timestamp of the starting point of the timeframe to be modified |
timestamp_ms_end | int32 | unix timestamp of the end point of the timeframe to be modified |
new_state | int32 | new state code |
The state of the timeframe between the timestamps is modified to be 150000: OperatorBreakState
{
"timestamp_ms": 1588879689394,
"timestamp_ms_end": 1588891381023,
"new_state": 150000
}