curl --request POST \
--url https://app.skulabs.com/s/ship/shipping/restore_inventory \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"store_id": "<string>",
"order_number": "<string>",
"shipment_id": "<string>",
"tracking_number": "<string>",
"no_refresh": true,
"carrier_shipment_id": "<string>"
}'
/s/ship/shipping/restore_inventory
curl --request POST \
--url https://app.skulabs.com/s/ship/shipping/restore_inventory \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"store_id": "<string>",
"order_number": "<string>",
"shipment_id": "<string>",
"tracking_number": "<string>",
"no_refresh": true,
"carrier_shipment_id": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK