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.
| Property | Purpose |
|---|---|
Limit | Maximum users in one page. |
StartingAfter / EndingBefore | Mutually exclusive Insion-ID cursors. |
ClientId, Email | Application-identifier and email filters. |
Status, User | Action-status and Insion-user filters. |
Use RequestOptions and CancellationToken exactly as on other methods; a failed request throws before a page is returned.