Yes, I do. You can send a command in a rule or use a Switch item for it.
demo.items
Switch hueMotionSensorStatus
demo.rules
rule "Switch Hue Motion Sensor ON / OFF"
when
Item hueMotionSensorStatus changed
then
val url = "http://<bridge ip address>/api/<username>/sensors/<id>/config"
var String body = ""
if( hueMotionSensorStatus.state != ON ) {
body = '{"on":false}'
} else {
body = '{"on":true}'
}
logInfo("demo", "Send command '{}' to {}", body, url)
sendHttpPutRequest(url, "application/json", body)
end