How to clear input setting for specific device type?

My input in an app is this:

input name: "life360", type: "device.Life360User", title: "Life360 Device"

How do I clear this input field? I have tried all of the below but none of them seem to work:

app.updateSetting("life360",[type:"device",value:])
app.updateSetting("life360",[type:"device.Life360User",value:])
app.clearSetting("life360")
app.updateSetting("life360",[type:"capability",value:])

Any ideas?

Did you try..
app.updateSetting("life360",[type:"device.Life360User",value:null])

1 Like

Ha, well that was my first attempt at clearing a switch capability input and it had not worked for that one, so no I hadn't tried it for this device input. But, wouldn't you know it, that worked for this one. Thanks

1 Like