1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

trello-api ボードに紐づいているカスタムフィールドの値をJSONで取得する

Posted at

目的

↓のエンドポイントたたくとボードに入っているカード全部紐づいているJSONとれる。
でも、そのJSONだけだと、カスタムフィールドがよくわからない。とくにカスタムフィールドの名前と紐づけできてない。

https://trello.com/1/boards/XXXXXX/cards~~

それでボードごとのカスタムフィールドのリスト取るエンドポイント探した。
でも見つかりにくかった。なので、ここに書く。

コード(javascript)


var user_name = 'XXXXXXXX';

// APIキーとトークン
var api_key = 'XXXXXXXXXX';
var api_token = 'XXXXXXXXXX';

//ボードID入れる
getCustomFields("XXXXXXXXXXXXXXXXXX");

function getCustomFields(e) {
  var url = "https://api.trello.com/1/boards/"+e+"/customFields?key="+api_key+"&token="+api_token;
  Logger.log(UrlFetchApp.fetch(url, {'method':'get'}));
}

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?