$.ajax({
url: '../test.php',
type: "POST",
data: {
id: 5
},
dataType: "json",
success: function(json) {
if (json.response) {
if (typeof json === 'object' && json.reponse && json.response.payments) {
show_result(json.response.payments.id);
}
} else if (json.error_message) {
show_error(json.error_message);
} else {
show_error('Некорректный json-ответ.');
}
}
});