Issue with admin API when searching user with space character in login

Hello there,

I’m trying to mass import users from another system, some got a space in their login.
While keycloak admin API does not have issues with importing users with space, i can’t seem to get them with a search query.
I am using NodeJs 18 with Fetch.I’ve tried to encode the string url as the search parameter is in the url, but without sucess.
An user with an email “keycloak@software.com” will get encoded to the URL
http://localhost:9090/admin/realms/dev/users?search=keycloak%40software.com” and work correctly.
But an user with a space who got an url like “http://localhost:9090/admin/realms/dev/users?search=keycloak%20software” will not yield any result.

This is also the case in the “search field” in the users pages of the Admin API.
Is there any solutions or work around for this problem?

Thanks you for your help.