ApplicationsControllerGetIdByAlias - метод

Get app id by its alias, or 204 (No Content) if can't get the data.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
C#
[HttpGetAttribute("get-id")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
[ProducesResponseTypeAttribute(204)]
public Task<ActionResult<Guid>> GetIdByAlias(
	[FromQueryAttribute(Name = "alias")] string applicationAlias,
	[FromQueryAttribute(Name = "64bit")] bool client64Bit,
	CancellationToken cancellationToken = default
)

Параметры

applicationAlias  String
Алиас приложения.
client64Bit  Boolean
App is using 64-bit architecture.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

Возвращаемое значение

TaskActionResultGuid
App id or 204 (No Content) if can't get the data.

См. также