Overview
This article will walk you through the steps to cancel an order without a refund from Manage as well from the backend.
Resolution
- Login to Manage.
- Select the customer’s Brand.
- Open Customer Service – Orders.
- Search by the Order number.
- Click the Advanced Tab.
- Scroll down to Line item details.
- Click the ‘+’ sign.
- Open Cancel Line Items (Without Refund).
- Select the line item.
- Click Void.
The order will be canceled without Refund.
<supportagent>
If it is not possible to cancel the order without refund through manage, it can be done from the backend. Use the SQL to get the ProductCluster ID
Select * from VictoryLineItem where victory_id = ‘XXXXX’;
Post a request in POSTMAN to Cancel Line Item without refund.
POST:
https://manage.symphonycommerce.com/org/{>{site}}/api/v1/order/{{order_id}}/void-line-items?reason=cancelOrder&itemIds={{line_item_id1,line_item_ids2,line_item_ids3}}
Note: Line item ID is the product cluster ID.
If the request is successful the status will be 200 OK. We need to verify the status of the order in Manage to confirm the cancellation was successful.
Note: In some cases, Manage either throws an error or simply does not successfully update the items to "cancelled" status. If this problem occurs, raise a ticket to PS to manually cancel the item from the database.
</supportagent>
Comments
1 comment
Regarding Postman: Line Item Ids are the VictoryLineItemIds and not the ProductClusterIds.
Article is closed for comments.