Summary
          Syncs an array of devices
          Description
          List of device names
          Route
          No Northbound API Available
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | devices | array | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "devices": [
    "aliquip non",
    "sed occaecat sunt",
    "fugiat"
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "devices": {
      "type": "array",
      "title": "devices",
      "items": {
        "type": "string",
        "enums": [
          "device1",
          "device2",
          "device3"
        ]
      }
    }
  },
  "required": [
    "devices"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | array | List of results of carrying out sync-from on all the devices | 
            
          
          
            Copied to Clipboard
            
            {
  "device": "ios.0",
  "status": true
}
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "schema": {
      "type": "object",
      "properties": {
        "device": {
          "type": "string",
          "title": "Device Name",
          "enums": [
            "device1",
            "device2",
            "device3"
          ]
        },
        "status": {
          "type": "boolean",
          "title": "Result"
        },
        "required": [
          "device",
          "status"
        ]
      }
    }
  },
  "examples": [
    {
      "device": "ios.0",
      "status": true
    },
    {
      "device": "ios.test.1",
      "status": true
    }
  ]
}