GET/partners/customers/{domainId}/subscription/reservation
顧客企業の現在のLINE WORKSサービスの予約情報を取得する。
予約が設定された顧客企業のみ取得可能。
注意
この API は、将来の提供終了を予定しています。
今後は、商品の予約状況の確認には 商品の予約設定の取得 をご利用ください。
ドメインの解約予約、最大ユーザー数の変更予約の状況確認には 使用状況の取得 をご利用ください。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
partner
partner.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID required example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| type | string | 予約タイプ
Allowed values : DELETE, START_PAID_SERVICE, ADD_LICENSE, SET_MAX_USER |
| applyDate | string | 適用日 format : date |
| plan | string | プラン
Allowed values : FREE, TRIAL, MONTHLY, ANNUAL_LICENSE, ANNUAL_PREPAY_LICENSE |
| licenseCount | integer | 適用時に設定するライセンス数 (年額契約) |
| maxMemberCount | integer | 適用時に設定する最大ユーザー数 (月額契約) |
| productId | string | 商品 ID
Allowed values : FR, STD_T, ADV_T, STD, ADV |
| domain | string | 適用時に設定するドメイン名 |
example
1{2 "type": "SET_MAX_USER",3 "applyDate": "2021-12-01",4 "plan": "MONTHLY",5 "maxMemberCount": 200,6 "productId": "STD",7 "domain": "example.com"8}