Ruby
List users
Retrieve users for the authenticated organization
page = client.list_users(limit: 20, email: "person@example.com")Filter with client_id, email, status, or Insion user ID. Use either starting_after or ending_before to paginate. The response has data and has_more.
Method shape
client.list_users(request_options: {}, **params)| Keyword | Type | Description |
|---|---|---|
limit | Integer | Maximum users to return. |
starting_after, ending_before | String | Mutually exclusive pagination cursors. |
client_id | String | Filter by your user identifier. |
email | String | Filter by user email. |
status | status enum | Filter by user action status. |
user | String | Filter by Insion user ID. |
The returned ListUsersResponse exposes data and has_more. Use the last user’s Insion ID as starting_after for the next page.