Summary
          Add a device to a Device Group
          Description
          Add a device to a Device Group
          Route
          No Northbound API Available
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | device | string | yes | Name of the device | 
    | device_group | string | yes | Name of the Group, which can be found from NSO or by using getAuthGroups task of AdapterNSO | 
            
          
          
            Copied to Clipboard
            
            {
  "device": "device3",
  "device_group": "group2"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "device": {
      "title": "device",
      "type": "string",
      "examples": [
        "device1",
        "device2",
        "device3"
      ]
    },
    "device_group": {
      "title": "device_group",
      "type": "string",
      "examples": [
        "group1",
        "group2",
        "group3"
      ]
    }
  },
  "required": [
    "device",
    "device_group"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Return result of adding a device to a device group | 
            
          
          
            Copied to Clipboard
            
            {
  "result": "failure"
}
           
          
            Copied to Clipboard
            
            {
  "title": "result",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "description": "Result of adding a device to a group",
      "examples": [
        "success",
        "failure"
      ]
    }
  },
  "required": [
    "result"
  ]
}