Shipment Information V2


DESCRIPTION

The customer can use this API to obtain shipment information, rates and charges for a specific customer and shipment date.

Request

Method: GET

Content-Type: application/json

URL:

Test Environment: https://training.logiztikalliance.com:5005/logCloudWSPre/api/ClientesExternosA/ListarTotalesGuiasPorClienteV2/{CUSTOMERCODE}/{YYYY-MM-DD}
Production Environment: https://cloud.logiztikalliance.com:5005/logCloudWS/api/ClientesExternosA/ListarTotalesGuiasPorClienteV2/{CUSTOMERCODE}/{YYYY-MM-DD}
API Test Environment Access
To access the API test environment, please contact our Customer Service team at customerservice.ec@logiztikalliance.com. Be sure to include the IP address from which testing will be performed.
Example: 123.123.125.14
INPUT PARAMETERS
Name Type Required Description
CustomerCode string(50) Yes Customer code.
Date Date(yyyy-MM-dd) Yes Shipment date.
AuthenticationToken string(128) Yes Alliance cloud security token (Api-Key).
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 of the origin airport.
destination string(16) Yes IATA code of the destination airport.
pieces string(16) Yes Unit of neasure 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.

EXAMPLE

[
{
“awb”: “17202083572”,
“shipmentDate”: “2026-02-25T00:00:00”,
“origin”: “UIO”,
“destination”: “UIO”,
“pieces”: 5,
“fb”: 1.50,
“totalFleet”: 5319.80,
“totalAWB”: 5319.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”,
}
]
}
]
Output Error

BODY

Name Type Description
mensaje string(400) In case of an error, we return the error message in this fields.

EXAMPLE

{
“mensaje”: “Error in database connection.”
}
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”
}