You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello!
I want to create a card automatically by Jenkins with the help of https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post in a DONE column. But also I want to update a "DONE date" field created by Custom Filed. I don't know the Id of the card which is creating.
Is there a way to update the "DONE date" in one creation command? Or other solutions?
Thanks,
I've found a solution by parsing creation result and receiving id with the help of "jq".
Hello. I'm having a similar problem. Could you add code or more data here? Thank you very much.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
CardName1 contains the name of the card.
CardName2 contains the name with adding one more space at the end.
CARD_ID=\$(curl -X GET \$URL1 | jq -r --arg NAME1 "\${CARD_NAME1}" --arg NAME2 "\${CARD_NAME2}" '.[] | select((.name==\$NAME1) or (.name==\$NAME2)) | .id')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
URL variable contains request to the trello api to the the specific List ID
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.