Данные ЭЦП отправляются в формате Base64 и являются полем JSON-обьекта.
URL-адрес запроса
https://localhost:9094local.cipher.kiev.ua:9090/api/v1/ticket/{uuid}/ds/data
...
Code Block | ||
---|---|---|
| ||
var data = { base64Data: base64DsData } $.ajax({ url: "https://localhost:9094local.cipher.kiev.ua:9090/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/ds/data", type: "POST", dataType: "json", contentType: "application/json", data: JSON.stringify(data) }).done(function (jsonResponse, textStatus, xhr) { message = jsonResponse.message; }).fail(function (xhr) { try { var jsonResponse = JSON.parse(xhr.responseText); message = jsonResponse.message; failureCause = jsonResponse.failureCause; } catch (e) { message = (xhr.responseText == undefined) ? "Ошибка при загрузке данных ЭЦП." : xhr.responseText; } }) |
...