Hi,
There is an use case to cancel a pending product order (a device is pending to ship, or order still in processing state). My understanding is we should use POST /productOrder to create a Product Order on this cancel action.
Is there any suggestion on the cancel order payload?
My first stab is below, is it a correct approach?
{
"requestedStartDate": "2023-06-15T13:27:03.074Z",
"billingAccount": {
"id": "string",
},
"productOrderItem": [
{
"quantity": 1,
"action": "cancel",
"productOrderItemRelationship": [
{
"id": "<order id to be chancel>",
"relationshipType": "targets",
}
]
}
]
}
------------------------------
Keven Chan
Rogers Communications Inc.
------------------------------