GET/partners/customers/{domainId}/option-product-orders
オプション商品の予約設定リストを取得する。
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 |
|---|---|---|
| optionProductOrders | array (OptionProductOrders) | パートナーが指定した適用日で、顧客企業のオプション商品を追加/変更/解約可能。 |
| Property | Type | Description |
|---|---|---|
| subscriptionId | integer | 商品契約 ID
|
| optionProductId | string | オプション商品 ID
required Allowed values : ACV2, ACV3, DRV, SSTG2, BCT, CST_S, CST_M, CST_L, JP_FLW_S, QTA_O1, QTA_O2, QTA_M1, QTA_M2, JP_PPO_DRV, JP_PPO_O, JP_PPO_M, JP_AIS_O, JP_AIS_M |
| subOptionId | string | サブオプション商品 ID
required Allowed values : 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, JP_FLW_S00, JP_FLW_S01, QTA_O101, QTA_O201, QTA_M101, QTA_M201, JP_PPO_DRV_T, JP_PPO_DRV_P, JP_PPO_O01, JP_PPO_M01, JP_AIS_O01, JP_AIS_M01 |
| type | string | オプション商品の予約タイプ
required Allowed values : APPLY, START_PAID_SERVICE, CHANGE_QUANTITY, CANCEL |
| quantity | integer | 契約数
readOnly : true nullable : true |
| applyDate | string | 適用日 required format : date |
example
1{2 "optionProductOrders": [3 {4 "subscriptionId": 0,5 "optionProductId": "ACV2",6 "subOptionId": "ACV201",7 "type": "APPLY",8 "quantity": null,9 "applyDate": "2021-11-01"10 },11 {12 "subscriptionId": 0,13 "optionProductId": "SSTG2",14 "subOptionId": "SSTG202",15 "type": "APPLY",16 "quantity": null,17 "applyDate": "2021-11-01"18 }19 ]20}