Hi team, I am using Trello API && want fetch the workspace users emails from the following endpoint:
https://api.trello.com/1/organizations/{{orgId}}/members?key={{trelloApi}}&token={{trelloToken}}
I am getting the following result:
[
{
"id": "string",
"fullName": "string",
"username": "string",
"lastActive": "2024-12-06T19:43:16.113Z"
}
]
Is there a way we can fetch the members emails ?
We run into the exactly same issue and it is really frustrated cause we have to make another call to the members/{id}
endpoint for each member. What’s worse, the members/{id}
endpoint has extremely low rate limit than others. Sadly the /organizations/{id}/members
endpoint does not return the email field in reality even though the doc says it does.
@shzheng even members/{id} doesn’t return me the member email, it returns “email:null” !! are you able getting the emails using this Endpoint ? I can only get the email of the user who integrated my PowerUp.