I did the following.
curl -u $API_KEY https://app.asana.com/api/1.0/users
then I collect the IDs of all users.
Is there a way to get all users info in a single query. I want some think like
curl -u $API_KEY https://app.asana.com/api/1.0/users/2423237500000 & 7124173919380
instead of two separate query
curl -u $API_KEY https://app.asana.com/api/1.0/users/2423237500000
curl -u $API_KEY https://app.asana.com/api/1.0/users/7124173919380