username:passwordAuthorization: Basic *****************{
"shipment_type": "MBL",
"shipment_number": "string",
"doc_type": "HBL"
}curl --location --request GET 'https://uateds.hlsholding.com/dts/GetDocuments' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"shipment_type": "MBL",
"shipment_number": "string",
"doc_type": "HBL"
}'{
"code": 200,
"success": true,
"data": {
"shipment_number": "COSU123456",
"shipment_type": "Master Bill of Lading",
"associated_files_collection": [
{
"blob": "SGVsbG8gd29ybGQ=",
"blob_filename": "sample.pdf",
"description": "Initial Packing List (2025-01-01)",
"media_type": "application/pdf",
"organization_access": false,
"doc_type": "PL"
}
],
"subshipment_collection": [
{
"shipment_number": "SZ26A1234",
"shipment_type": "House Bill of Lading",
"associated_files_collection": [
{
"blob": "SGVsbG8gd29ybGQ=",
"blob_filename": "demo.pdf",
"description": "HBL-SZ26A1234",
"media_type": "application/pdf",
"organization_access": false,
"doc_type": "HBL"
}
]
}
]
}
}