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.
Hi,
I am integrating trello API and i am stuck in search API. Is there any way to search any particular card by the custom field, as i understand /search API allow to filter cards only on cards fields not custom field.
Also, is there any way to find recently modified records where i can find which are updated today or recently by passing the start time?
Hi @Bodhi 👋
Welcome to the Community! To help, I would recommend taking a look at this support article on How to Filter Trello Cards by Custom Field - hopefully that may be able to shed some light.
I hope this helps but if you have any other questions just ask away 😃
All the best,
Laura
@Laura Holton _Valiantys_ I believe what you mentioned is UI process, what I am looking is to filter by Trello API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well if that is what the api says then I like you just have to do some coding like using list comprehension ....see example to get call cards where Task Status == 'Completed'
[card for card in board.open_cards() if card.get_custom_field_by_name('Task Status').value == 'Completed']
Yes, I cheated.
This same process can be done with gather cards in Cascade.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@milynnus I am looking directy to use trello API. BTW can you mentioned in what langauage you have wrote that query or use any trello library?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check out py-trello
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.