I am trying to retrieve only active members of a team using the Miro API. While fetching organization members, I can filter active users using:
GET https://api.miro.com/v2/orgs/{orgId}/members?active=true
with the query parameter active=true
.
However, when retrieving team members, the API returns all users (both active and deactivated), and I couldn't find any property in the response to differentiate active users from inactive ones.
Is there a way to filter out only active team members using the API? Or is there an alternative approach to achieve this?
Any guidance would be appreciated!