Need get by API date of repeat card. How can i do this?
This is using py-trello
trello_card = client.get_card('5ee60e6d3696b52076e4d7d5')
print (trello_card.card_created_date)
Answer is in this format : 2020-06-14 07:47:57
Don’t have how do this using API?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Depending on your specific requirements, you must get access to a card object.
In the example I am showing, I got the card_id because the platform I am using has a Trello module where i can get all the Card IDs of the board and the code would be applied perhaps within a for x in list_of_cards and check x.name == ‘something’:
The other way is to trap action type the changes in the board/card. That way, you get the card_id easily. And yes, the platform I am using has a Trello trigger you can configure to meet your specific needs.
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.