Return email field as part of the Member object

We are currently getting throttled by Trello API when fetching members of an organization and our current implementation is that:

  1. We call Get Memberships of an Organization API to get all memberships of the organization;

  2. We call Get the Members of an Organization API to get all members of the organization;

  3. Lastly, we have to call the Get a Member API to get the email of the member.

We easily run into rate limit exception given the multiple calls we have to make and we’d like to see if by any chance we could avoid the additional calls to fetch the email field. If the email field is returned as part of the Member object, it would save us a plenty number of calls. Also, the first API supports passing the member=true field to indicate the Member object is included as part of the membership response but as I check the member field returned as part of the membership is missing some fields comparing with calling the second API directly. Could you please make the Member object consistent in both places?