This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
GetUserList
Marco Dal Zovo edited this page Jul 23, 2021
·
1 revision
Returns a list of User objects filtered.
Name | Type | Summary |
---|---|---|
filter | UserFilter |
The request's filter |
Name | Type | Optional | Summary |
---|---|---|---|
Username | String |
Yes | The user's username to search |
String |
Yes | The user's email to search |
UserFilter filter = new UserFilter()
{
Username = "Daz",
Sort = new Dictionary<string, SortDirectionEnum>()
{
{ "username", SortDirectionEnum.ASCENDING }
}
};
var result = await AniAPI.Instance.GetUserList(filter);