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": "dolor",
      "type": "native",
      "date": "2019-04-12T14:42:47.958Z",
      "rawConfig": "hostname ios0\nno service password-encryption\n...",
      "description": "description of backup",
      "notes": "notes about backup",
      "gbac": {
        "write": [],
        "read": []
      }
    },
    {
      "id": "5c35355dbebaa82eaf8113f0",
      "name": "xr9kv-atl",
      "provider": "eiusmod irure quis consequat",
      "type": "native",
      "date": "2019-04-12T14:42:47.958Z",
      "rawConfig": "hostname ios0\nno service password-encryption\n...",
      "description": "description of backup",
      "notes": "notes about backup",
      "gbac": {
        "write": [],
        "read": []
      }
    },
    {
      "id": "5c35355dbebaa82eaf8113f0",
      "name": "xr9kv-atl",
      "provider": "ullamco incididunt irure magna",
      "type": "native",
      "date": "2019-04-12T14:42:47.958Z",
      "rawConfig": "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",
      "type": "array",
      "items": {
        "$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": "aliquip magna"
}
           
          
            Copied to Clipboard
            
            {
  "title": "status",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "const": "success"
    },
    "message": {
      "type": "string",
      "example": "2 device backups imported successfully"
    }
  }
}