Path Parameters
Unique identifier of the shipment. This is the
id returned when creating the shipment.curl -X GET 'https://hermes.api.e-cross.tech/ext/shipments/aa65bd71-33cf-40c1-bdc5-91b01344f659' \
-H 'Authorization: Bearer YOUR_TOKEN'
{
"id": "aa65bd71-33cf-40c1-bdc5-91b01344f659",
"description": "Weekly dispatch",
"status": "CREATED",
"creationDate": "2025-06-10T10:43:59.080Z",
"lastUpdateDate": "2025-06-10T10:43:59.080Z",
"parcelIds": [
"PURECAPS387294640090BR"
],
"merchantId": "PURECAPS",
"expectedShipDate": "2025-06-01T15:00:00Z",
"expectedDeliveryDate": "2025-06-03T15:00:00Z",
"firstMileCarrierId": "USPS",
"firstMileTrackingNumber": "FM123456",
"weight": 0.24
}
Retrieve details of a specific shipment
curl -X GET 'https://hermes.api.e-cross.tech/ext/shipments/aa65bd71-33cf-40c1-bdc5-91b01344f659' \
-H 'Authorization: Bearer YOUR_TOKEN'
{
"id": "aa65bd71-33cf-40c1-bdc5-91b01344f659",
"description": "Weekly dispatch",
"status": "CREATED",
"creationDate": "2025-06-10T10:43:59.080Z",
"lastUpdateDate": "2025-06-10T10:43:59.080Z",
"parcelIds": [
"PURECAPS387294640090BR"
],
"merchantId": "PURECAPS",
"expectedShipDate": "2025-06-01T15:00:00Z",
"expectedDeliveryDate": "2025-06-03T15:00:00Z",
"firstMileCarrierId": "USPS",
"firstMileTrackingNumber": "FM123456",
"weight": 0.24
}
id returned when creating the shipment.Was this page helpful?