How to make a request so that the response receives a list of specific users with specific id (id1, id2, id3, id4)?

My attempts: GET https://gorest.co.in/public/v2/users/id1,id2,id3,id4 GET https://gorest.co.in/public/v2/users?ids[]=id1&ids[]=id2&ids[]=id3&ids[]=id4 GET https://gorest.co.in/public/v2/users?filter[ids]=id1,id2,id3,id4 GET https://gorest.co.in/public/v2/users?ids=id1,id2,id3,id4 GET https://gorest.co.in/public/v2/users?where={"id":["id1","id2","id3","id4"]}

its not possible in the current implementation of application


Little markdown supported