Recover a deleted description or card name

If someone changes or deletes the description of a card, it may appear that the entire description has been deleted. However, Trello tracks these changes in the background so you can recover the original description later.

Although the old description isn't currently visible via the Trello web interface, the data is available via the API and it's relatively easy to locate.

The description must have been successfully saved to the card to be recoverable.

説明の復元手順

  1. Open the card with the missing description

  2. Get the card ID for the card. You can find it in the URL of the card, after the /c/. For example, hpAcP7IS is the card ID for https://trello.com/c/hpAcP7IS/814-multiple-log-in-credentials

  3. Go to https://trello.com/1/cards/[card ID]/actions?filter=updateCard:desc, replacing [card ID] with the card ID of the card with the missing description

  4. Search for {"old": . Look to the right of each location where this is found. The old description can be found to the right of {”desc”

JSON code showing that the old description is located to the right of the text "old".

Optionally, you can install the JSONView Chrome Extension for chrome, or the JSONView Add On for Firefox. These will let you format the JSON so it’s easier to read, but it’s not required.

カード名を復元する手順

  1. Export the card to a JSON file from the Share menu of the card

  2. Chrome によって、JSONView Chrome 拡張機能をインストールします。Firefox の場合は、JSONView アドオンをインストールしてユーザーが読みやすい JSON ファイルにします。

  3. JSON の actions セクションと、カードの以前の名前が記録されている場所を探します。

screenshot_RecoveringCardTitle

技術的な説明

The API route we use is  GET /1/cards/[card id or shortlink]/actions. We then add the parameter ?filter=updateCard:desc to only see changes to the descrition.

GET routes can use your browser authentication as API authentication, so this URL can be entered in your browser’s address bar after you log in to Trello.

その API ルートを上記のサンプル カード(hpAcP7IS)で使用すると、URL は https://trello.com/1/cards/hpAcP7IS/actions?filter=updateCard:desc となります。取得された結果の中で、説明が変更されるたびに実行されたアクションが、data.card.desc(新しい説明)と data.old.desc(古い説明)として表示されます。

JSON の操作に関するより詳細な説明

JSON データの操作方法に関する詳細は「Trello の JSON エクスポートについて理解する」をご確認ください。

さらにヘルプが必要ですか?

アトラシアン コミュニティをご利用ください。