> For the complete documentation index, see [llms.txt](https://docs.keeper.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.keeper.io/enterprise-guide/jp/webhooks.md).

# Webhooks

![](/files/QGYsYkZNhGwbu70Pu4Si)

## Webhooksとは

Webhookは、あるアプリケーションから別のアプリケーションへプッシュ配信する、ユーザー定義のHTTPリクエストです。

Webhookの一般的な用途は以下のとおりです。

* **Slack**、**Microsoft Teams**などのメッセージングプラットフォームへのリアルタイム通知
* **ServiceNow**や**Jira**などのITSMプラットフォームでのチケット作成
* クラウド上のカスタムソフトウェアへのKeeperイベントの統合

Keeper管理コンソールから、カスタムWebhookイベントをプッシュ配信できます。

## グローバルイベント変数

Webhook送信時は、以下の変数でフィールドを置き換えられます。

| 名前               | 説明                                                                                          |
| ---------------- | ------------------------------------------------------------------------------------------- |
| #alert\_name     | 管理コンソールに表示されるイベントのタイトル                                                                      |
| #description     | イベントの説明。全イベントの一覧は[レポートとアラート](/enterprise-guide/jp/event-reporting.md#event-list)ページをご参照ください |
| #timestamp       | イベントの発生時刻                                                                                   |
| #remote\_address | イベントを生成したユーザーの外部IPアドレス                                                                      |
| #username        | アラートを生成したユーザー (イベントによっては空)                                                                  |
| #json            | 生JSONイベントデータ (フィールドのデバッグおよび検証用)                                                             |

## 動的イベント変数

イベントの種類に応じて、以下の変数も使用できます。

| 名前                   | 説明                   |
| -------------------- | -------------------- |
| #to\_username        | 共有イベントの共有先ユーザー       |
| #from\_username      | 共有イベントの共有元ユーザー       |
| #record\_uid         | レコード関連イベントのレコード識別子   |
| #shared\_folder\_uid | 共有フォルダ関連イベントのフォルダ識別子 |
| #folder\_uid         | フォルダ固有イベントのフォルダ識別子   |
| #team\_uid           | チーム関連イベントのチーム識別子     |
| #role\_id            | ロール関連イベントのロールID      |
| #node                | ノード関連イベントのノードID      |
| #enforcement         | ロールポリシー変更時の設定名       |
| #seats               | MSP関連イベントの席数         |
| #seats\_added        | MSP関連イベントの追加席数       |
| #seats\_removed      | MSP関連イベントの削除席数       |

### URL

Keeperプラットフォームの各画面へのハイパーリンクも挿入できます。

ボルトログイン用URL

* **US** (米国データセンター): <https://keepersecurity.com/vault>
* **EU** (欧州データセンター): <https://keepersecurity.eu/vault>
* **AU** (豪州データセンター): <https://keepersecurity.com.au/vault>
* **CA** (カナダデータセンター): <https://keepersecurity.ca/vault>
* **JP** (日本データセンター): <https://keepersecurity.jp/vault>
* **US\_GOV** (米国公共機関): <https://govcloud.keepersecurity.us/vault>

管理コンソール用URL

* **US** (米国データセンター): <https://keepersecurity.com/console>
* **EU** (欧州データセンター): <https://keepersecurity.eu/console>
* **AU** (豪州データセンター): <https://keepersecurity.com.au/console>
* **CA** (カナダデータセンター): <https://keepersecurity.ca/console>
* **JP** (日本データセンター): <https://keepersecurity.jp/console>
* **US\_GOV** (米国公共機関): <https://govcloud.keepersecurity.us/console>

### ディープリンク

ウェブボルトでは、特定のレコードUIDへのディープリンクを利用できます。例:

<https://keepersecurity.com/vault/#detail/XXX>

* XXXをKeeperレコードに表示されるレコードUIDで置き換えるか、`#record_uid` に置き換えます。
* `.com` を適切なテナントドメインに置き換えます。
  * **US:** `.com`
  * **EU:** `.eu`
  * **AU:** `.com.au`
  * **CA:** `.ca`
  * **JP:** `.jp`
  * **GovCloud:** `.us` (`govcloud.` サブドメイン付き)

### プラットフォーム別の手順

よく使うエンドポイントの手順を記載しています。

* [Slack](/enterprise-guide/jp/webhooks/slack-webhooks.md)
* [Microsoft Teams](/enterprise-guide/jp/webhooks/teams-webhooks.md)
* [Discord](/enterprise-guide/jp/webhooks/discord-webhooks.md)
* [ServiceNow ITSM](/keeperpam/jp/secrets-manager/integrations/servicenow-itsm.md)
* [Jira ITSM](/keeperpam/jp/secrets-manager/integrations/jira-itsm.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.keeper.io/enterprise-guide/jp/webhooks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
