В HTML у меня есть несколько полей регистрации клиентов
<input type="text" ng-model="customer.fname">
<input type="text" ng-model="customer.lname">
<input type="text" ng-model="customer.username">
Код моего углового контроллера
var customerInformation = $scope.customer;
customerInformation = JSON.stringify($scope.customer);
$http({
method: 'POST',
url: 'person/registrationCustomer',
data: customerInformation,
timeout: 4000
})
.then(function (success) {
}, function (error) {
});