Summary
Update an Inventory device
Description
Update an Inventory device
Route
POST /automationgateway/createInventoryDevice
Roles
admin
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| integrationType |
enum |
yes |
Allowed values are: [ netmiko, netconf, http_requests, grpc ] - Integration type of the device |
| deviceName |
string |
yes |
name for the device to be updated |
| name |
string |
yes |
name for the device |
| variables |
object |
yes |
device variables |
Copied to Clipboard
{
"integrationType": "aliquip in voluptate ipsum esse",
"deviceName": "deserunt ad velit",
"name": "mollit sint nulla cupidatat tempor"
}
Copied to Clipboard
{
"type": "object",
"properties": {
"integrationType": {
"title": "integrationType",
"type": "string"
},
"deviceName": {
"title": "name",
"type": "string"
},
"name": {
"title": "name",
"type": "string"
},
"variables": {
"title": "variables",
"type": "object"
}
},
"required": [
"integrationType",
"deviceName",
"name",
"variables"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
object |
A JSON Object containing status, code and the result |
Copied to Clipboard
{
"result": true
}
Copied to Clipboard
{
"description": "A JSON Object containing status, code and the result",
"type": "object",
"properties": {
"result": true
},
"required": [
"result"
],
"additionalProperties": false
}