UserInfoControllerGetUsersInfo - метод

Gets user information for multiple users with specified identifiers.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.1.3+7e2b1422f9b8c7c41fbbc4b151a843bed05319ab
C#
[HttpPostAttribute]
[SessionMethodAttribute(UserAccessLevel.Regular, false, new string[] { ... })]
[TypedJsonBodyAttribute]
[ConsumesAttribute("application/json", new string[] { ... })]
[ProducesAttribute("application/json", new string[] { ... })]
[ProducesResponseTypeAttribute(200)]
[ProducesResponseTypeAttribute(204)]
public Task<ActionResult<IList<UserInfo>>> GetUsersInfo(
	[FromBodyAttribute] IList<Guid> ids,
	[FromQueryAttribute] string? type = null,
	CancellationToken cancellationToken = default
)

Параметры

ids  IListGuid
A collection of the user identifiers.
type  String  (Optional)
Optional user info handler type. If , the default handler is used.
cancellationToken  CancellationToken  (Optional)
Propagates notification that operations should be canceled.

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

TaskActionResultIListUserInfo
A collection of user information for users that are found.

См. также