Response Fields
Field Name | Type | Description |
---|
result | string
| The result data from the API request. |
error | string
| The error message if the command execution failed. |
returnData | string
| The return data from the API request. |
contextData | array<JSON Object>
| The context data from the API request. |
Sample Data
CODE
{
"result": "<table class='cc-table horizontal-table'><tr><th>count</th><th>subnet</th><th>ipAddressList</th></tr><tr><td>1</td><td>192.168.0.0/24</td><td>['192.168.0.1']</td></tr><tr><td>2</td><td>192.168.0.0/16</td><td>['192.168.0.1', '192.168.1.1']</td></tr></table>",
"error": "",
"returnData": "Successful",
"rawData": "",
"contextData": [
{
"count": 1,
"subnet": "192.168.0.0/24",
"ipAddressList": [
"192.168.0.1"
]
},
{
"count": 2,
"subnet": "192.168.0.0/16",
"ipAddressList": [
"192.168.0.1",
"192.168.1.1"
]
}
],
"outputData": ""
}