curl --request POST \
--url https://api.skulabs.com/order/add_manual_shipment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"store_id": "<string>",
"order_number": "<string>",
"address": "<string>",
"carrier": "<string>",
"tracking_number": "<string>",
"service": "<string>",
"order_items": "<string>",
"warehouse_id": "<string>",
"dropship": "<string>",
"no_refresh": true,
"notes": "<string>",
"force_deduction": "<string>",
"cost": 123,
"options": {},
"booking": "<string>",
"seal": "<string>",
"origin_address": "<string>",
"bol_pro_number": "<string>",
"total_bundles": "<string>",
"tracking_url": "<string>",
"parcel": "<string>"
}'
/order/add_manual_shipment
curl --request POST \
--url https://api.skulabs.com/order/add_manual_shipment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"store_id": "<string>",
"order_number": "<string>",
"address": "<string>",
"carrier": "<string>",
"tracking_number": "<string>",
"service": "<string>",
"order_items": "<string>",
"warehouse_id": "<string>",
"dropship": "<string>",
"no_refresh": true,
"notes": "<string>",
"force_deduction": "<string>",
"cost": 123,
"options": {},
"booking": "<string>",
"seal": "<string>",
"origin_address": "<string>",
"bol_pro_number": "<string>",
"total_bundles": "<string>",
"tracking_url": "<string>",
"parcel": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK