Teams Webhooks
KeeperのレポートとアラートをMicrosoft TeamsへWebhookで通知
Microsoft Teamsのセットアップと連携










コマンドラインによるWebhooksのテスト (任意)
最終更新
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"themeColor": "0076D7",
"summary": "Alert: #alert_name",
"sections": [{
"activityTitle": "#description",
"activitySubtitle": "#alert_name",
"activityImage": "https://keeper-email-images.s3.amazonaws.com/common/Keeper_512x512.png",
"facts": [{
"name": "User",
"value": "#username"
}, {
"name": "Timestamp",
"value": "#timestamp"
}, {
"name": "IP Address",
"value": "#remote_address"
}],
"markdown": true
}]
}# MacおよびLinuxの場合:
curl -X POST -H 'Content-type: application/json' -d @test.json <WEBHOOK URL>
# Windowsの場合
curl.exe -H "Content-Type:application/json" -d @test.json <WEBHOOK URL>