CardsControllerPostGet - метод

Get card with specified attributes. Card should be present in database, or it should be virtual.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
C#
[HttpPostAttribute("get")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
public Task<ActionResult<CardGetResponse>> PostGet(
	[FromBodyAttribute] CardGetRequest request,
	CancellationToken cancellationToken = default
)

Параметры

request  CardGetRequest
Request to get the card.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

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

TaskActionResultCardGetResponse
Response to the request.

См. также