79269446

Date: 2024-12-10 19:02:41
Score: 1.5
Natty:
Report link

You have to request the single user endpoint. The "list users" only returns limited data. But you can iterate over the single user endpoint by using the user ids returned from the user list api call:

Get a single user:

# by ID
user = gl.users.get(user_id)
# by username
user = gl.users.list(username='root')[0]
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hauke