So I’m looking into how the supply multiple arguments to a command to a device. Would this be the correct way?
$ smartthings devices:commands 00000000-0000-0000-0000-000000000000 'lockCodes:setCode(6,1235,Test Code)'
I use this json for use with the API.
{
"commands": [
{
"component": "main",
"capability": "lockCodes",
"command": "setCode",
"arguments": [
6,"1235","Test Code"
]
}
]
}