Skip to content

Commit

Permalink
#16 Fix usage.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 23, 2021
1 parent 42932e4 commit b0c15ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ org = api.organizations.get_by_id('demo')
print(json.dumps(org.json(), indent=2))

# Fetch the last 5 created and active users
users = api.organizations.get_users(org.id, Eq('status', 'Active'), range='0-5', sort='-createdAt')
users = api.organizations.get_users(org.id, Eq('status', 'Ok'), range='0-5', sort='-createdAt')

# Display the usernames
for user in users:
Expand Down

0 comments on commit b0c15ad

Please sign in to comment.