clerk-sdk-ruby
clerk-sdk-ruby copied to clipboard
Filtering users list by user id isn't working
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.