You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reading to your API specs, it requires a parameter for each id. https://fusionauth.io/docs/apis/users#search-for-users
What it does however is somehow expecting a list of user ids and then converting that list value to a boolean value instead of looping trough all the ids and appending paramteres.
It could be changed in that way; however as this is auto-generated, I don't really know how to do it properly:
uri = fa_client(tenant_id).start().uri("/api/user/search")
for id in ids:
uri.url_parameter("ids", id)
search_res = await uri.get().go()