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
Thanks for reply.
I want to get the Activity of the image.Can I get Activity in batch processing instead of dynamic?
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.
It looks like you're new here. Sign in or register to get started.