I have a requirement that to display all Trello cards for which user has permission to view/edit/delete. I have gone through Trello Rest API Documentation and found below API to get the Trello cards.
https://api.trello.com/1/members/me/cards?key=AppKey&token=AccessToken
But when I used this API, it returned the empty list though the user is admin/member for all boards and each board has few lists and cards. Then I have directly added same user as a member to one of the Trello card and executed the same API. This time it has returned the card to which I added user as member.
But I don't want to add user as a member to each card. As user is already admin/member of all boards I would like show all cards of all boards irrespective of whether user is a member of card or not. Is there any Trello rest API exists to fetch all cards for which user has permission to view/edit/delete?
Any suggestions/answers are more than welcome.
Thanks in advance!!!