I was wondering if it's possible to get pluginData (specifically, the storyPoints from the AgileTools power-up) while doing a List API call:
GET https://api.trello.com/1/boards/<boardId>/lists?cards=all
I can see a list of cards in the payload, but they don't have the `pluginData` field, whereas if I do an individual /card call like:
GET https://api.trello.com/1/cards/<cardId>?pluginData=true
I get it in the card payload. Is it possible to get the plugin data for cards when they're specified as a nested resource of the lists call? I've tried adding pluginData=true into the lists request as suggested by this forum post https://community.atlassian.com/t5/Trello-questions/How-to-get-pluginData-for-all-cards-in-the-list/qaq-p/691053 but it hasn't worked.
And if this is not possible, what would be the best way to use the API to get a summary of the cards on a board, which lists they belong to and any plugin data associated with them?
Many thanks,
Eddie
@[deleted] looks like pluginData is not part of the nested resource for Cards:
https://developers.trello.com/reference#cards-nested-resource
Here's a Trellinator function to grab that data:
https://gist.github.com/iaindooley/4a3eaf053cf15be5aa9c20d9179b1a3f
You can see how to set up Trellinator here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.