TypeScript
List users
Retrieve users for the authenticated organization
const page = await client.listUsers({ limit: 20, email: "person@example.com" });Use starting_after or ending_before to paginate. You can filter by clientId, email, action status, or Insion user ID. The response is ListUsersResponse with data and has_more.
The pagination behavior matches List records: use the final user ID from one page as starting_after for the next page, and do not send both cursor fields together.