InsionInsion
C#

List users

Retrieve users for the authenticated organization

var page = await client.ListUsersAsync(new GetApiV1UsersRequest { Limit = 20, Email = "person@example.com" });

The request supports Limit, mutually exclusive StartingAfter and EndingBefore, ClientId, Email, Status, and Insion User filters. ListUsersResponse contains Data and HasMore; continue with the final user ID as the next cursor.

PropertyPurpose
LimitMaximum users in one page.
StartingAfter / EndingBeforeMutually exclusive Insion-ID cursors.
ClientId, EmailApplication-identifier and email filters.
Status, UserAction-status and Insion-user filters.

Use RequestOptions and CancellationToken exactly as on other methods; a failed request throws before a page is returned.