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 _ACE Rotterdam_ 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.
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.
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.