Cómo verificar el registro Eliminar con éxito en el nodo MongoDB JS

Model.remove({ _id: req.body.id }, function(err) {
    if (!err) {
            message.type = 'notification!';
    }
    else {
            message.type = 'error';
    }
});
Depressed Dotterel