Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Запрос позволяет инициировать отображение окна приложения поверх всех окон, которые на момент запроса открыты на рабочем столе.

URL-адрес запроса

https://local.cipher.kiev.ua:90919090/api/v1/ui

Метод

PUT

Параметры запроса

...

Code Block
languagejs
$.ajax({
    url: "https://local.cipher.kiev.ua:90919090/api/v1/ui",
    type: "PUT"
}).done(function (jsonResponse, textStatus, xhr) {
    // some handler code
}).fail(function (xhr) {
    try {
        var jsonResponse = JSON.parse(xhr.responseText);
        message = jsonResponse.message;
    } catch (e) {
        message = (xhr.responseText == undefined) ? "Ошибка при выполнении запроса на отображения UI." : xhr.responseText;
    }
})

...