/api/users/:id

users tablomda seçtiğim bir user ın bilgilerine erişmek istiyorum. Nasıl çekebilirim?

    app.controller('YourController',  function($scope, UsersService) {
         .................

        UsersService.getById(userId, function() {
                $scope.users = ???;
            }, function(errResponse){
                console.error('Error while fetching Users');
            }
        );