2.予約通知の送信
指定したユーザーに「2.予約通知」を送信します。
POST /v2/notifications/templates/:template_identifier/reservations
メッセージ送信は非同期で行われるため、この API ではメッセージ送信リクエストが正常に受け付けられたかどうかを返します。正常に受け付けた場合はメッセージ毎に一意のメッセージ ID を採番して返します。
メッセージ送信が完了しているかどうかは、そのメッセージ ID を用いて 通知メッセージ送信結果の取得 API で確認する必要があります。そのための URL をレスポンスに含めて返します。
認証プロバイダー/通知メッセージ利用申請
通知メッセージを利用するためには、認証プロバイダー になったうえで LINE 社への申請が必要となります。
リクエストパラメータ
Path Parameters
パラメータ名 | 型 | 必須 | 説明 |
---|---|---|---|
template_identifier | string | ○ | 通知メッセージのテンプレートを一意に表す識別子 |
Body Parameters
パラメータ名 | 型 | 必須 | 説明 |
---|---|---|---|
provider | string | ○ | プロバイダ名。現在は line のみ対応 |
recipient | object | ○ | Recipient オブジェクトを指定 |
contents | object | ○ | Contents オブジェクトを指定 |
Recipient オブジェクト
共通: Recipient オブジェクト を参照してください。
Contents オブジェクト
パラメータ名 | 型 | 必須 | 説明 |
---|---|---|---|
company_name | string | 企業名/サービス名 | |
reservation_date | string | ○ | 予約⽇ (e.g. 2020-01-01 ) |
reservation_time | string | 予約時刻 (e.g. 10:00 ) | |
reservation_details | string | 予約内容(ホテル名/店名/商品名/プラン名) | |
reservation_number | string | 予約番号 | |
reservation_place | string | 予約店舗名/予約場所/予約住所 | |
reservation_persons | integer | 予約⼈数 | |
detail_button_url | string | 「詳細を確認する」ボタンの URL |
エラーコード
エラー定義 参照。
レスポンス
成功時はステータスコード 202 Accepted
とともに、作成した Notification リソースの JSON を返します。
パラメータ名 | 型 | Nullable | 説明 |
---|---|---|---|
identifier | string | 通知メッセージを一意に表す識別子 | |
status_url | string | 通知メッセージの配信状況を確認する URL |
レスポンス例
{
"identifier": "6fb75cc14b7ba0e58b9ee97926433ed7b90d1f2b",
"status_url": "https://msgapi.socialplus.jp/v2/notifications/6fb75cc14b7ba0e58b9ee97926433ed7b90d1f2b"
}
実行サンプル
curl -L -X POST 'https://msgapi.socialplus.jp/v2/notifications/templates/{Template identifier}/reservations' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-API-Key: {API Key}' \
--data-raw '{
"provider": "line",
"recipient": {
"type": "phone_number",
"value": "{E.164 Phone Number}"
},
"contents": {
"company_name": "株式会社ソーシャルPLUS",
"reservation_date": "2020-01-01",
"reservation_time": "10:00",
"reservation_details": "ご新規プラン",
"reservation_number": "1234567890",
"reservation_place": "ラティス青山スクエア",
"reservation_persons": 3,
"detail_button_url": "https://example.com"
}
}'