[Solved] API question: list all tasks with a specific tag

Hi all,

Is it possible to list all tasks in a board with a specific tag, in one API call?

I use Kanboard as a todo list and also add things to buy. Those are marked with the Buy tag.

I wrote a Telegram bot that allows me to manage my Kanboard (add, list, mark as done).

Looking for an easy way for Telegram to only list stuff to buy when I go to the DIY store :stuck_out_tongue:

Thanks for Kanboard!

Cheers


Edit: the searchTasks method is what I was looking for!

{
“jsonrpc”: “2.0”,
“method”: “searchTasks”,
“id”: 1468511716,
“params”: {
“project_id”: 2,
“query”: “tag:Buy”
}
}