curl --location --request POST 'https://app.gotreek.com/api/shipments' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_id": 123,
"courier": "aramex"
}'{
"success": true,
"message": "Shipment created successfully",
"data": {
"shipment_id": 23153,
"tracking_link": "http://localhost/shipment_tracking?trackingNumber=100387034046",
"shipment_label_url": "https://elasticbeanstalk-eu-central-1-640066223797.s3-accelerate.amazonaws.com/360/Deliverist_1766159050543_report.pdf",
"shipment_cost": 2595,
"shipment_cost_without_cod": 1795,
"order_status": "awaiting_pickup",
"courier": "deliverist",
"external_id": "38703404"
}
}