GET/partners/customers/{domainId}/option-product-usages/{optionProductId}
顧客企業のオプション商品の利用内訳を取得する。
注意
この API は、将来の提供終了を予定しています。 今後は、オプション商品の利用内訳リストの取得 をご利用ください。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
partner
partner.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | ドメイン ID required example : 10000001 |
| optionProductId | string | オプション商品 ID
required Allowed values : ACV, SSTG, ACV2, ACV3, SSTG2, DRV, BCT |
| Parameter | Type | Description |
|---|---|---|
| year | integer | 取得年 required example : 2021 |
| month | integer | 取得月 required minimum : 1 maximum : 12 example : 6 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
Option Product Usages Response
| Property | Type | Description |
|---|---|---|
| optionProductUsages | array (OptionProductUsages) |
| Property | Type | Description |
|---|---|---|
| optionProductId | string | オプション商品 ID
Allowed values : ACV, SSTG, ACV2, ACV3, DRV, SSTG2, BCT, CST_S, CST_M, CST_L |
| subOptionId | string | サブオプション商品 ID
Allowed values : ACV, SSTG, ACV200, ACV201, ACV300, ACV301, DRV00, DRV01, DRV_PS_T, DRV_PS, DRV_PA_T, DRV_PA, SSTG201, SSTG202, SSTG203, SSTG204, SSTG205, SSTG206, SSTG207, BCT01, BCT02, BCT03, BCT04, CST_S00, CST_S01, CST_M00, CST_M01, CST_L00, CST_L01 |
| usedDate | string | 日付 format : date readOnly : true |
| plan | string | プラン
Allowed values : FREE, TRIAL, MONTHLY, ANNUAL_LICENSE, ANNUAL_PREPAY_LICENSE |
| memberCount | integer | 利用ユーザー数 readOnly : true |
| licenseCount | integer | ライセンス数 (年額契約) readOnly : true |
| quantity | integer | 契約数
readOnly : true nullable : true |
example
1{2 "optionProductUsages": [3 {4 "optionProductId": "SSTG2",5 "subOptionId": "SSTG202",6 "usedDate": "2021-11-01",7 "plan": "MONTHLY",8 "memberCount": 100,9 "quantity": null10 },11 {12 "optionProductId": "ACV2",13 "subOptionId": "ACV201",14 "usedDate": "2021-11-01",15 "plan": "MONTHLY",16 "memberCount": 100,17 "quantity": null18 }19 ]20}