...
URL-адрес запроса
https://local.cipher.kiev.ua:9091localhost:9092/api/v1/ticket
Метод
POST
Параметры запроса
...
Code Block | ||
---|---|---|
| ||
$.ajax({ url: "https://local.cipher.kiev.ua:9091localhost:9092/api/v1/ticket", type: "POST", dataType: "json" }).done(function (jsonResponse, textStatus, xhr) { message = jsonResponse.message; uuid = jsonResponse.ticketUuid; }).fail(function (xhr) { try { var jsonResponse = JSON.parse(xhr.responseText); message = jsonResponse.message; } catch (e) { message = (xhr.responseText == undefined) ? "Ошибка при создании квитанции." : xhr.responseText; } }) |
...