は、アプリケーションによって作成されたウェブフックのすべてを取得するためのAPIリクエストである:以下に列挙Trello API Documentation /1/members/[id]/tokensの
GET https://api.trello.com/1/members/me/tokens?webhooks=true&key=[APPLICATION_KEY]&token=[USER_TOKEN]
関連セクション:
GET/1 /メンバー/ [idMemberまたはユーザ名]/tokenslink 必要な権限:、自分の読んで、アカウント
引数
(オプション)
filter
- デフォルト:
all
- 有効な値の一つ:
all
、none
webhooks
(オプション)
- デフォルト:
false
- 有効な値のいずれか:
true
、false
また
は、私がidMemberまたはユーザー名
ノートとして使用されることに注意してください。あなたの場合ユーザ名として私を指定すると、この呼び出しはあなたがsupを持っているかのように応答しますサンプルJSONレスポンスは、私が見る与えトークン
に関連付けられているユーザ名ここでTrello API documentation /1/members/me
をさプライ:
{
"id": "568d40cc3aa021f1b3602ea0",
"identifier": "Server Token",
"idMember": "562d50bc3aa020f1b3602ec0",
"dateCreated": "2016-05-30T22:01:15.721Z",
"dateExpires": null,
"permissions": [
{
"idModel": "562d50bc3aa071f1b3602ec6",
"modelType": "Member",
"read": true,
"write": true
},
{
"idModel": "*",
"modelType": "Board",
"read": true,
"write": true
},
{
"idModel": "*",
"modelType": "Organization",
"read": true,
"write": true
}
],
"webhooks": [
{
"id": "5675a0a8159fbeef4b796da3",
"description": "Feature Requests Board",
"idModel": "55a1176a0b620663da985753",
"callbackURL": "http://example.com/trello/webhook-callback?type=features",
"active": true
},
{
"id": "5673a0ac6ab60af7ec3a706b",
"description": "Bugs Board",
"idModel": "541ebcf34c03910922ff0fc3",
"callbackURL": "http://example.com/trello/webhook-callback?type=bugs",
"active": true
}
}