Summary
          Import backup documents
          Description
          Insert backup documents into the ucm_configs collection
          Route
          POST /configuration_manager/import/backups
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | backups | array | yes | Array of device configs | 
            
          
          
            Copied to Clipboard
            
            {
  "backups": {
    "id": "5c35355dbebaa82eaf8113f0",
    "name": "xr9kv-atl",
    "provider": "deserunt",
    "type": "native",
    "date": "2019-04-12T14:42:47.958Z",
    "rawConfig": "hostname ios0\nno service password-encryption\n...",
    "xmlConfig": "hostname ios0\nno service password-encryption\n...",
    "description": "description of backup",
    "notes": "notes about backup",
    "gbac": {
      "write": [],
      "read": []
    }
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "backups": {
      "title": "backups",
      "$ref": "deviceData#/definitions/backup"
    }
  },
  "required": [
    "backups"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | status | object | Status of backup import operation | 
            
          
          
            Copied to Clipboard
            
            {
  "status": "success",
  "message": "culpa Excepteur"
}
           
          
            Copied to Clipboard
            
            {
  "title": "status",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "const": "success"
    },
    "message": {
      "type": "string",
      "example": "2 device backups imported successfully"
    }
  }
}