getUsers method
List all users within an organization.
Sign the provided TGetUsersBody with the client's stamp function and submit the request (POST /public/v1/query/list_users).
See also: stampGetUsers.
Implementation
Future<TGetUsersResponse> getUsers({
required TGetUsersBody input,
}) async {
return await request<TGetUsersBody, TGetUsersResponse>(
"/public/v1/query/list_users",
input,
(json) => TGetUsersResponse.fromJson(json));
}