Summary
          Run a list of Live Status commands against a list of devices
          Description
          Run a list of Live Status commands against a list of devices (e.g. ['show version', 'show ip interface brief']).
          Route
          POST /nso_manager/runCommands
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | devices | array | yes | A list of names. | 
    | commands | array | yes | The commands to run against the devices. | 
    | options | object | yes | NSO NETCONF transaction options | 
            
          
          
            Copied to Clipboard
            
            {
  "devices": [
    "device1,device2,device3",
    "device1,device2,device3",
    "device1,device2,device3"
  ],
  "commands": [
    "qui dolore veniam ea voluptate",
    "mollit irure ad"
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "devices": {
      "oneOf": [
        {
          "type": "array",
          "items": {
            "$ref": "inputDevices"
          }
        },
        {
          "$ref": "inputDevices"
        }
      ],
      "required": [
        "devices"
      ]
    },
    "commands": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "required": [
        "commands"
      ]
    },
    "options": {
      "type": "object",
      "properties": {}
    }
  },
  "required": [
    "devices",
    "commands",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | results | object | Live status results. | 
            
          
          
            Copied to Clipboard
            
            [
  [
    {
      "device": "magna esse Duis non",
      "result": "sit officia ad occaecat id",
      "status": "Ut sunt",
      "command": "non quis veniam reprehenderit"
    },
    {
      "device": "Ut laborum",
      "result": "magna non ea dolor quis",
      "status": "consequat non in sed",
      "command": "cupidatat esse"
    }
  ],
  [
    {
      "device": "dolore dolore",
      "result": "consequat velit pariatur ea in",
      "status": "non ut sint",
      "command": "labore officia eu sint non"
    }
  ]
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "type": "array",
    "items": {
      "type": "object",
      "properties": {
        "device": {
          "type": "string"
        },
        "result": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "command": {
          "type": "string"
        }
      },
      "required": [
        "device",
        "result",
        "status",
        "command"
      ]
    }
  }
}