開発者向け機能:サーバスクリプト:notifications.Get
## 概要
対象テーブルに設定されている通知の情報を取得することができます。
## 構文
```
notifications.Get(id)
```
## パラメータ
|パラメータ|型|必須|説明|
|:----------|:----------|:---:|:---------------------------|
|id|int|○|通知のIDを指定|
## 戻り値
通知の設定を取得できたらtrue、取得できなかったらfalseを返却します。
## 使用例
以下の例では、通知IDが2の設定を取得し、IDとアドレスをログに出力します。
##### JavaScript
```
let notification = notifications.Get(2);
context.Log(`${notification.Id},${notification.Address}`);
```
## 注意事項
こちらは[サーバスクリプト](/ja/manual/table-management-server-script)で使用するメソッドです。[スクリプト](/ja/manual/table-management-script)では使用できません。
## 関連情報
・[テーブルの管理:サーバスクリプト](/manual/table-management-server-script)
・[オブジェクトごとの実行タイミング](/manual/server-script-conditions)
・[notificationsオブジェクト](/manual/server-script-notifications)
・[notificationオブジェクト](/manual/server-script-notification)
・[notifications.Newメソッド](/manual/server-script-notifications-new)