CardsControllerGetStoreError - метод

Get error info of operation "saving card with files contents" with specified identifier. Returns 204 (No Content) if card isn't found, therefore no errors occured.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.0.4
C#
[HttpGetAttribute("store-errors/{id:guid}")]
[SessionMethodAttribute(UserAccessLevel.Regular)]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
[ProducesResponseTypeAttribute(204)]
public Task<ActionResult<CardStoreResponse>> GetStoreError(
	[FromRouteAttribute] Guid id,
	CancellationToken cancellationToken = default
)

Параметры

id  Guid
Error card identifier.
cancellationToken  CancellationToken  (Optional)
Token to cancel async task.

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

TaskActionResultCardStoreResponse
Response with error info. Returns 204 (No Content) if card isn't found.

См. также