There are two solutions available in this situation:
- Supply a query to your get() method, such as (Disabled = false)
Example:
users = rally.get('User', fetch='FirstName,LastName,EmailAddress', query='(Disabled = false)')
- Use the getAllUsers() "convenience" method built into pyral
Example:
users = rally.getAllUsers()