{
"type": "object",
"properties": {
"devices": {
"description": "the name of device(s) to run the command on",
"type": "array"
},
"command": {
"description": "the command to run on the device",
"type": "string"
},
"options": {
"description": "the options to include in the command",
"type": "object",
"properties": {},
"required": [
"options"
],
"additionalProperties": false
}
},
"required": [
"devices",
"command",
"options"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name
Type
Description
result
object
An object containing the status of running the command on all devices
Copied to Clipboard
{
"result": true
}
Copied to Clipboard
{
"description": "An object containing the status of running the command on all devices",
"type": "object",
"properties": {
"result": true
},
"required": [
"result"
],
"additionalProperties": false
}