Summary
Apply Configuration Template and Verify
Description
Apply a configuration template and verfiy it.
Route
POST /device_management/applyTemplateVerify
Roles
admin
other
apiwrite
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| name |
string |
yes |
- |
| template |
string |
yes |
- |
| config |
object |
yes |
- |
Copied to Clipboard
{
"name": "aliqua est ipsum velit",
"template": "non laboris",
"config": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"template": {
"type": "string"
},
"config": {
"type": "object",
"properties": {},
"required": [
"config"
],
"additionalProperties": false
}
},
"required": [
"name",
"template",
"config"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| config |
object |
JSON object containing current device config |
Copied to Clipboard
{
"config": true
}
Copied to Clipboard
{
"description": "JSON object containing current device config",
"type": "object",
"properties": {
"config": true
},
"required": [
"config"
],
"additionalProperties": false
}