...
URL-адрес запроса
https://local.cipher.kiev.ua:9091localhost:9092/api/v1/ticket/{uuid}/ts/creator
...
Code Block | ||
---|---|---|
| ||
$.ajax({ url: "https://local.cipher.kiev.ua:9091localhost:9092/api/v1/ticket/79343564-147f-4a2a-ac2a-182d7a55f802/ts/creator", type: "POST", dataType: "json", contentType: "text/plain" }).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; } }) |
...