检查 trello 中是否存在看板、列表或卡片

Check if board, list, or card exists in trello

有没有办法检查 Trello 中是否存在看板、列表或卡片?想要创建一个 python 脚本,如果名称已经存在,它将显示所提到的组件的列表。

我查了API好像没有查询功能

期待您的意见。提前致谢。

知道了。我能够使用 trello 中的搜索 API。 https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-get

分享代码:

def search_board(board_name):
    url = "https://api.trello.com/1/search"
    querystring = {"query": board_name, "key": key, "token": token}
    response = requests.request("GET", url, params=querystring)
    print(response)
    board_id = ""
    print(response.json())
    if response.json()["boards"]:
        board_id = response.json()["boards"][0]["id"]
        print(board_id)
    else:
       return board_id