I have a list that looks like this:
Try using the success() call back
success()
$http.get('/Documents/DocumentsList/' + caseId).success(function (result) { $scope.Documents = result; });
But now since Documents is an array and not a promise, remove the ()
Documents
()
{{document.Name}}