Summary
          applyTemplates Task
          Description
          Applies an array of template/device pairings.  Allows a user to include a key/value map of variables.  Also supports NSO transaction options.
          Route
          POST /nso_manager/applyTemplates
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | adapterId | string | yes | ID of the adapter against which the action is executed. | 
    | templates | array | yes | list of template request objects | 
    | options | object | yes | NSO NETCONF transaction options | 
            
          
          
            Copied to Clipboard
            
            {
  "adapterId": "sample adapterId",
  "templates": [
    {
      "device": "in aliqua nulla ex",
      "template": "sint laboris sed magna esse",
      "variables": {
        "UAlrXPLkWp": -60849230.206177965
      }
    },
    {
      "device": "in",
      "template": "id",
      "variables": {
        "cHfBzQNxzE": true
      }
    },
    {
      "device": "ut in dolore proident",
      "template": "minim ut Excepteur",
      "variables": {
        "dDB": -97874226.07148212
      }
    },
    {
      "device": "in",
      "template": "voluptate anim magna",
      "variables": {
        "KtPa": 53842603.74399945
      }
    },
    {
      "device": "aute consectetur occaecat",
      "template": "in",
      "variables": {
        "OPDAkQnKADE": true
      }
    }
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "adapterId": {
      "$ref": "inputAdapterId"
    },
    "templates": {
      "$ref": "applyTemplatesInput"
    },
    "options": {
      "$ref": "netConfOptions"
    }
  },
  "required": [
    "adapterId",
    "templates",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | response | object | status of the execution | 
            
          
          
            Copied to Clipboard
            
            {
  "result": "ok",
  "success": true
}
           
          
            Copied to Clipboard
            
            {
  "properties": {
    "result": {
      "title": "Result",
      "type": "string",
      "examples": [
        "ok"
      ]
    },
    "success": {
      "title": "Success",
      "type": "boolean"
    }
  }
}