curl -X DELETE '{backend_url}/admin/order-edits/{id}/shipping-method/{action_id}' \
-H 'Authorization: Bearer {jwt_token}'Remove a shipping method in the order edit by the ID of the method’s SHIPPING_ADD action.
Every shipping method has an actions property, whose value is an array of actions. You can check the action’s name using its action property, and use the value of the id property.
curl -X DELETE '{backend_url}/admin/order-edits/{id}/shipping-method/{action_id}' \
-H 'Authorization: Bearer {jwt_token}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the order that is being edited.
The ID of the shipping method's SHIPPING_ADD action.
OK
The preview of an order edit.
A preview of an order if a change, such as exchange, return, edit, or claim is applied on it.
Show child attributes