Summary
          Run a Live Status
          Description
          Run a Live Status call in NSO (Network Services Orchestrator).
          Route
          POST /nso_manager/liveStatus
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | device | string | yes | Device's name. | 
    | command_type | string | yes | Command type. | 
    | command | string | yes | Command arguments that should be run. | 
            
          
          
            Copied to Clipboard
            
            {
  "device": "device1,device2,device3",
  "command_type": "any",
  "command": "show ip interface brief"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "device": {
      "$ref": "inputDevices"
    },
    "command_type": {
      "type": "string",
      "examples": [
        "any",
        "show"
      ]
    },
    "command": {
      "type": "string",
      "examples": [
        "show version",
        "show ip interface brief"
      ]
    }
  },
  "required": [
    "device",
    "command_type",
    "command"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | response | object | Live status. | 
            
          
          
            Copied to Clipboard
            
            {
  "status": "> show version Cisco IOS Software, NETSIM IOS.0# "
}
           
          
            Copied to Clipboard
            
            {
  "properties": {
    "status": {
      "title": "status",
      "type": "string",
      "examples": [
        "> show version Cisco IOS Software, NETSIM IOS.0# "
      ]
    }
  },
  "required": [
    "status"
  ]
}