Данные ЭЦП отправляются как HTML-форма с двоичными данными.
URL-адрес запроса
https://localhost:9094/api/v1/ticket/{uuid}/ds/data
Метод
POST
Параметры запроса
uuid | String | Идентификатор сессии |
---|---|---|
uploadDsData | form-data | Элемент формы, который содержит данные ЭЦП |
Настраиваемые заголовки запроса
Отсутствуют
Ответ
Код ответа | Content-type | Допустимые параметры | Пример содержимого |
---|---|---|---|
200 | application/json | message | { |
503 | application/json | message | { |
400 | application/json | message | { "message" : "Сессия отсутствует." } |
500 | application/json | message failureCause | { |
Параметры JSON объекта ответа
Параметр | Тип данных | Описание |
---|---|---|
message | String | Описание результата проведения операции |
failureCause | String | Описание причины возникновения ошибки |
Пример кода на JavaScript + jQuery 2.2.4
var file = $("#uploadDsData").get(0).files[0]; var formData = new FormData(); formData.append('uploadDsData', file); $.ajax({ url: "https://localhost:9094/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/ds/data", type: "POST", contentType: false, processData: false, data: formData }).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; } })