DSC - Panic Button/Scene (SendCommand)

Not sure if this will be of use to others, but as I have the Panic button set to trigger the siren, after a bit of digging I found that this code does the same thing.

local dev = 344 luup.call_action("urn:micasaverde-com:serviceId:DSCAlarmPanel1", "SendCommand", {Command = "060", Data="3"}, dev)

Do you know the corresponding call for turning panic off on DSC?

Ive not tested these as im away, but I assume it would be the standard disarm command - so something like this…

http://192.168.x.y:3840/data_request?id=action&DeviceNum=228&serviceId=urn:micasaverde-com:serviceId:AlarmPartition2&action=RequestArmMode&State=Disarm&PINCode=1234

luup.call_action("urn:micasaverde-com:serviceId:AlarmPartition2", "RequestArmMode", { State="Disarmed", PINCode="<insert pin here>" } , DEV_NUM)