Summary
          Dry Run multiple objects of Smart Templates
          Description
          Dry Run multiple objects of Smart Templates
          Route
          POST /smart_template/st/multiDryrunWF
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | instance_data | array | yes | Array of Smart Template Instances | 
            
          
          
            Copied to Clipboard
            
            {
  "instance_data": [
    {
      "regexErrors": {
        "variables": {
          "hHBu": [
            {
              "tjhWmi": {
                "GiEMlRNT": "anim ut",
                "uhXnkWyZ": "officia",
                "VnZAjrmf": "laboris nostrud exercitation",
                "sIDRQJEz": "deserunt",
                "jWNBYsyjhb": "nostrud ad pariatur"
              }
            }
          ]
        },
        "faml": {
          "_attr": {
            "type": "list",
            "ns": "http://tail-f.com/ns/config/1.0",
            "prefix": "ios",
            "condition": "must",
            "severity": "notices"
          }
        },
        "action": "create"
      },
      "regularErrors": {
        "variables": {
          "lenAKIPw": [
            {
              "pSBR": {
                "YfbSlpY": "Excepteur labore",
                "ytweXgfb": "quis eiusmod sint",
                "ZCDGViYhMZL": "voluptate officia eu esse adipisicing",
                "MKkfD": "do",
                "l": "aute laboris"
              }
            }
          ]
        },
        "faml": {
          "_attr": {
            "type": "keyword",
            "ns": "http://tail-f.com/ns/ncs",
            "prefix": "ncs",
            "condition": "cant",
            "severity": "error"
          },
          "_keys": [
            "ALFpOyZD"
          ],
          "_children": [
            {
              "M": {
                "_attr": {
                  "type": "leaf",
                  "ns": "http://tail-f.com/ns/ncs",
                  "prefix": "ncs",
                  "condition": "cant",
                  "severity": "notices"
                },
                "_value": "E"
              }
            },
            {
              "f": {
                "_attr": {
                  "type": "leaf",
                  "ns": "http://tail-f.com/ns/config/1.0",
                  "prefix": "ios",
                  "condition": "cant",
                  "severity": "error"
                }
              }
            },
            {
              "u": {
                "_attr": {
                  "type": "leaf",
                  "ns": "http://tail-f.com/ns/config/1.0",
                  "prefix": "ios",
                  "condition": "must",
                  "severity": "notices"
                },
                "_value": "g"
              }
            },
            {
              "q": {
                "_attr": {
                  "type": "keyword",
                  "ns": "http://tail-f.com/ns/config/1.0",
                  "prefix": "ios",
                  "condition": "must",
                  "severity": "warning"
                },
                "_value": "g"
              }
            },
            {
              "v": {
                "_attr": {
                  "type": "keyword",
                  "ns": "http://tail-f.com/ns/config/1.0",
                  "prefix": "ios",
                  "condition": "cant",
                  "severity": "notices"
                }
              }
            }
          ]
        },
        "action": "create"
      },
      "deletionErrors": {
        "xpaths": [
          "/ncs:devices/ncs:device[ncs:name='deviceName']/ncs:config/ios:hostname"
        ],
        "action": "delete"
      }
    }
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "instance_data": {
      "items": {
        "properties": {
          "regexErrors": {
            "$ref": "smartTemplateInstance"
          },
          "regularErrors": {
            "$ref": "smartTemplateInstance"
          },
          "deletionErrors": {
            "$ref": "deletionInstance"
          }
        },
        "required": [
          "regexErrors",
          "regularErrors",
          "deletionErrors"
        ]
      }
    }
  },
  "required": [
    "instance_data"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | config | object | Native Config object | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "device": "device2",
    "config": "ut"
  },
  {
    "device": "device3",
    "config": "quis sunt veniam"
  },
  {
    "device": "device2",
    "config": "aliqua"
  }
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "$ref": "deviceDryRun"
  },
  "maxItems": 3
}