GET/partners/customers/{domainId}/option-products
適用 (購入) 済みのオプション商品リストを取得する。
注意
この 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 |
|---|---|---|
| optionProducts | array (OptionProducts) | オプションを適用 (購入) すると、適用日からの利用金額が翌月の 1 日に請求される。 |
| Property | Type | Description |
|---|---|---|
| optionProductId | string | オプション商品 ID
Allowed values : ACV2, ACV3, DRV, SSTG2, BCT, CST_S, CST_M, CST_L |
| subOptionId | string | サブオプション商品 ID
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 |
| appliedTime | string | 適用 (購入) 日時 format : date-time readOnly : true |
| quantity | integer | 契約数
readOnly : true nullable : true |
example
1{2 "optionProducts": [3 {4 "optionProductId": "ACV2",5 "subOptionId": "ACV201",6 "quantity": null,7 "appliedTime": "2021-11-01T00:00:00.000Z"8 },9 {10 "optionProductId": "SSTG2",11 "subOptionId": "SSTG202",12 "quantity": null,13 "appliedTime": "2021-11-01T00:00:00.000Z"14 }15 ]16}