Shipment Information V2
DESCRIPTION
The customer can use this API to obtain shipment information, rates and charges for a specific customer and shipment date.
URL:
| Production Environment: | https://cloud.logiztikalliance.com:5005/logCloudWS/api/ClientesExternosA/ListarTotalesGuiasPorClienteV2/{CUSTOMERCODE}/{SHIPMENTNR} |
| Test Environment: | https://training.logiztikalliance.com:5005/logCloudWSPre/api/ClientesExternosA/ListarTotalesGuiasPorClienteV2/{CUSTOMERCODE}/{SHIPMENTNR} |
INPUT PARAMETERS
| Name | Type | Required | Description |
| CustomerCode | string(50) | Yes | Customer code. |
| ShipmentNr | string(50) | Yes | Shipment number. |
METHOD:
GET
BODY
[
{
“awb”: “17202083572”,
“shipmentDate”: “2026-02-25T00:00:00”,
“origin”: “UIO”,
“destination”: “AMS”,
“pieces”: 106,
“fb”: 46.87,
“totalFleet”: 5319.80,
“totalAWB”: 5361.80,
“totalAgent”: 40.00,
“totalCarrier”: 2.00,
“charges”: [
{
“charge”: “AWA”,
“value”: 25.00
},
{
“charge”: “CHA”,
“value”: 15.00
},
{
“charge”: “CGC”,
“value”: 2.00
}
],
“rates”: [
{
“rate”: 3.350,
“grossWeight”: 1480.00,
“chargeableWeight”: 1588.00
}
]
}
Response
Output Success
BODY
| Name | Type | Obligatory | Description |
| awb | string(32) | Yes | Shipment number. |
| shipmentDate | DateTime(yyyy-MM-dd HH:mm:ss) | Yes | Shipment date. |
| origin | string(16) | Yes | IATA code od the origin airport. |
| destination | string(16) | Yes | IATA code of the destination airport. |
| pieces | string(16) | Yes | Unit of measure for the dimensions, CM or INCH. |
| fb | decimal(9,3) | Yes | FB value related to the customer in the shipment. |
| totalFleet | decimal(9,3) | No | Total freight value (rate*chargeable weight). |
| totalAWB | decimal(9,3) | No | Total AWB including freight and charges. |
| totalAgent | decimal(9,3) | No | Total charges payable to the agent. |
| totalCarrier | decimal(9,3) | No | Total charges payable to the carrier |
| charges | array | No | List of charges associated with the AWB. |
| rates | array | No | List of rate details associated with thw AWB. |
ERRORS MESSAGES
WRONG DATE FORMAT
{
“error”: “Wrong date format. Please enter this format YYY/MM/DD”
}
ERROR IN DATABASE CONNECTION
{
“error”: “Error in database connection.”
}
WRONG TOKEN
“Unauthorized”
ERROR IN CUSTOMER CODE
{
“error”: “The ApiKey does not have access to that customer code.”
}
CUSTOMER DOES NOT EXIST
{
“error”: “Customer does not exist.”
}
MISSING PARAMETERS
{
“error”: “Missing input parameters. Please send Shipment Date and Customer Code”
}
