Is there a way to export an entire Trello board as JSON via API?

后端 未结 1 409
耶瑟儿~
耶瑟儿~ 2021-02-03 10:48

I\'m trying to compare Trello boards in order to highlight differences. You can easily download a board in JSON format from Trello by replacing the board\'s name with \".json\"

1条回答
  •  伪装坚强ぢ
    2021-02-03 11:24

    That backup route is just a synonym for GETting /1/boards/board_id_here with the following parameters:

    fields: "all"
    actions: "all"
    action_fields: "all"
    actions_limit: 1000
    cards: "all"
    card_fields: "all"
    card_attachments: true
    labels: "all"
    lists: "all"
    list_fields: "all"
    members: "all"
    member_fields: "all"
    checklists: "all"
    checklist_fields: "all"
    organization: false
    

    0 讨论(0)
提交回复
热议问题