InsionInsion
Java

List users

Retrieve users for the authenticated organization

ListUsersResponse page = client.listUsers(
    GetApiV1UsersRequest.builder().limit(20).email("person@example.com").build()
);

Filter by clientId, email, status, or Insion user ID. startingAfter and endingBefore provide cursor pagination and cannot be combined. The response contains data and hasMore.

Method overloads

ListUsersResponse listUsers()
ListUsersResponse listUsers(RequestOptions options)
ListUsersResponse listUsers(GetApiV1UsersRequest request)
ListUsersResponse listUsers(GetApiV1UsersRequest request, RequestOptions options)

The request builder supports limit, startingAfter, endingBefore, clientId, email, status, and user. Use the final user ID from one page as startingAfter for the next page.

On this page