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!!!
You need to iterate through the boards. First, get the boards for the member:
GET https://api.trello.com/1/members/me/boards?key=KEY&token=TOKEN
Then, for each board in the array:
GET https://api.trello.com/1/boards/BOARD_ID/cards?key=KEY&token=TOKEN
Thanks for your prompt response. If I implement as you suggested, then it leads to two any network calls(API calls). Out of curiosity I am asking, is there any single Trello API exists so that I can get all trello cards, instead of making multiple API calls?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It actually leads to multiple API calls: one to get the member's boards and one for each board.
Further, each board may contain more cards than can be returned in one request. A request typically only returns up to 1000 cards. If you want to get all the cards for each board, you may need to perform multiple requests per board, using the before parameter (you can find it in the documentation).
There is no way to obtain all the cards for all boards in one single request, as this would potentially cause a tremendous amount of data to be transferred.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.