api_token = “”
session = APISession(api_token)
for user in session.iter_all(“users”):
print(user[“id”], user[“email”], user[“name”])
This code iterts to all the users and provide their id, email and name
I want just for specific users can you pls tell how can i. do that