clerk-sdk-ruby icon indicating copy to clipboard operation
clerk-sdk-ruby copied to clipboard

Filtering users list by user id isn't working

Open JakeDluhy opened this issue 8 months ago • 1 comments

Here is an example of some code:

# LIst of clerk ids
user_identifiers = [...]

@clerk = Clerk::SDK.new
users = @clerk.users.get_user_list(user_id: user_identifiers)

# Expecting: Users to only include users with id included in user_identifiers
# Actual: Includes all users in the Clerk account
puts users

For more context, I'm using this in a Rails app. My Clerk account does not have organizations enabled.

JakeDluhy avatar Jun 02 '25 16:06 JakeDluhy