I want to create a list of cards that I converted to cards from the check list.
I will use the REST API to make a list of cards.
Please tell me how to get activity of card with REST API.
If you want to do this dynamically (as the conversions happen),you need to use webhooks. This is a good introduction: https://developers.trello.com/page/webhooks
Yes, you can get the activity as batches. You will need to get the actions associated with the cards on the board.
For the particular purpose of listing all the cards converted from a checklist item on a board, you can issue a request like this:
GET boards/BOARD_ID/actions?filter=convertToCardFromCheckItem&limit=1000&key=KEY&token=TOKEN
This will return an array of up to 1000 checklist item conversions on your board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.