Добавить:
method
И изменить type
к type
.
Что-то вроде этого:
$.ajax({
type: "POST",
dataType: 'json',
url: "http://localhost:52930/api/person/",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({
Name: "Sinan",
Password: 'test'
})
})
.done(function(msg) {
alert(msg)
});