curl -X POST '{backend_url}/admin/order-edits/{id}/shipping-method' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"shipping_option_id": "{value}"
}'Add a shipping method to an exchange. The shipping method will have a SHIPPING_ADD action.
curl -X POST '{backend_url}/admin/order-edits/{id}/shipping-method' \
-H 'Authorization: Bearer {jwt_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
"shipping_option_id": "{value}"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the order that is being edited.
The shipping method's details.
The ID of the associated shipping option.
Set a custom price for the shipping method.
The shipping method's description.
A note viewed only by admin users.
The shipping method's metadata, can hold custom key-value pairs.
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