A
How to make a request so that the response receives a list of specific users with specific id (id1, id2, id3, id4)?
Aleksei Oputin about 3 years ago 3190 views 1 replies
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"]}
1 reply
Z
zeevy about 3 years ago
its not possible in the current implementation of application