List the registered users. Getting response code as 401 Unauthorised
-
Hi, Im using fusionauth for a small setup. So using this with default db search.
I tried to fetch the list of users with the following info.
HttpMethod = GET
Url: http://localhost:9011/api/user/search?queryString="*"
Above request made with Authorization in the request header part.I am getting
401 Unauthorised
error from fusionauth API response.Is there any other fields that need to be passed?
But if i use the same authorization token with GET: http://localhost:9011/api/user/ its getting success response.
-
I think you want:
http://localhost:9011/api/user/search?queryString=*
No double quotes around it.
Does that work?
-
Thanks for the reply. It works
-
This post is deleted!