Не работает запрос, возвращает Data is invalid, но код взят с документации. Помогите, в ajax новичок.
function get_info(){
var settings = {
"async": true,
"crossDomain": true,
"url": "https://api.novaposhta.ua/v2.0/json/",
"method": "POST",
"headers": {
"content-type": "application/json",
},
"processData": false,
"data": {"apiKey": "4b20976ea65ea7f198adc418ffe4ab2a",
"modelName": "Address",
"calledMethod": "searchSettlements",
"methodProperties": {
"CityName": "київ",
"Limit": 5
}}
}
$.ajax(settings).done(function (response) {console.log(response);
});
}