Summary
          Provision a Smart Template
          Description
          Provision a Smart Template
          Route
          POST /smart_template/st/provision
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | instance_data | object | yes | Smart Template Instance | 
            
          
          
            Copied to Clipboard
            
            {
  "instance_data": {
    "variables": {
      "XeVSklB": [
        {
          "GYWduxmvuoq": {
            "TcfMK": "nulla ea Lorem in sit",
            "kNAnB": "irure",
            "MATi": "ut in irure officia ad",
            "U": "ut",
            "LaGuJVEF": "occaecat dolor aliquip culpa ea"
          }
        }
      ]
    },
    "faml": {
      "_attr": {
        "type": "keyword",
        "ns": "http://tail-f.com/ns/ncs",
        "prefix": "ios",
        "condition": "must",
        "severity": "warning"
      },
      "_keys": [
        "klnH",
        "tOk",
        "cj",
        "BDykL"
      ],
      "_children": [
        {
          "V": {
            "_attr": {
              "type": "leaf",
              "ns": "http://tail-f.com/ns/ncs",
              "prefix": "ios",
              "condition": "must",
              "severity": "error"
            }
          }
        },
        {
          "E": {
            "_attr": {
              "type": "list",
              "ns": "http://tail-f.com/ns/config/1.0",
              "prefix": "ncs",
              "condition": "cant",
              "severity": "notices"
            },
            "_value": "F"
          }
        },
        {
          "g": {
            "_attr": {
              "type": "leaf",
              "ns": "http://tail-f.com/ns/config/1.0",
              "prefix": "ncs",
              "condition": "must",
              "severity": "error"
            }
          }
        },
        {
          "U": {
            "_attr": {
              "type": "list",
              "ns": "http://tail-f.com/ns/config/1.0",
              "prefix": "ncs",
              "condition": "cant",
              "severity": "error"
            }
          }
        },
        {
          "W": {
            "_attr": {
              "type": "keyword",
              "ns": "http://tail-f.com/ns/config/1.0",
              "prefix": "ncs",
              "condition": "cant",
              "severity": "notices"
            },
            "_value": "w"
          }
        }
      ]
    },
    "action": "create"
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "instance_data": {
      "$ref": "smartTemplateInstance"
    }
  },
  "required": [
    "instance_data"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | status | object | NSO Status | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "host": "mZ",
    "data": {
      "action": "update",
      "success": true
    }
  }
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "host": {
        "type": "string",
        "pattern": "[a-zA-Z]+"
      },
      "data": {
        "type": "object",
        "properties": {
          "action": {
            "type": "string",
            "enum": [
              "update"
            ]
          },
          "success": {
            "type": "boolean"
          }
        },
        "reqiuired": [
          "action",
          "success"
        ]
      }
    },
    "required": [
      "host",
      "data"
    ]
  }
}