GET/partners/customers/{domainId}/option-product-orders
Gets scheduled tasks for options.
OAuth 2.0 authentication. For more information, see Authentication and Authorization.
partner
partner.read
| Parameter | Type | Description |
|---|---|---|
| domainId | integer | Domain ID required example : 10000001 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| optionProductOrders | array (OptionProductOrders) | The partner can add, update and delete options of its customers on a scheduled date. |
| Property | Type | Description |
|---|---|---|
| subscriptionId | integer | Subscription ID
|
| optionProductId | string | Option ID
required Allowed values : ACV2, DRV, SSTG2, BCT |
| subOptionId | string | Sub option ID
required Allowed values : ACV200, ACV201, DRV00, DRV01, DRV_PS_T, DRV_PS, DRV_PA_T, DRV_PA, SSTG201, SSTG202, SSTG203, SSTG204, SSTG205, SSTG206, SSTG207, BCT01, BCT02, BCT03, BCT04 |
| type | string | Scheduled task type
required Allowed values : APPLY, START_PAID_SERVICE, CHANGE_QUANTITY, CANCEL |
| quantity | integer | Quantity
readOnly : true nullable : true |
| applyDate | string | Scheduled date 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}