UserInfoControllerGetUsersInfo - метод

Gets user information for multiple users with specified identifiers.

Definition

Пространство имён: Tessa.Web.Controllers
Сборка: Tessa.Web (в Tessa.Web.dll) Версия: 4.2.0+ffad8363f63902f18b3b3f4cfa533a14b2fb19a6
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.

См. также