Skip to main content

Pallet Information

The GetPalletInfo endpoint returns pallet information from the MIMS system.


How to query pallet information

HTTP POST Request

Request TypeExample URL
POST{{url_base}}/GetPalletInfo
Examplehttp://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"GetPalletInfo"

Input Parameters

ParameterTypeRequiredDescription
PalletIdentificationString(20)YesPallet identification

Return

ParameterTypeRequiredDescription
WebServiceReturnWebServiceReturnYesStandard WebService response information on method execution
PalletInfoGetPalletInfoYesObject containing pallet information

📝 GetPalletInfo Object

The GetPalletInfo object represents a pallet in the MIMS system.

Return Parameters

ParameterTypeRequiredDescription
PalletNoString(25)YesExternal pallet code
PalletDateDataHoraYesPallet date
PalletStatusString(2)YesPallet status
DispatchQtyIntegerYesQuantity of dispatched boxes
NetWeightFloatYesNet weight
RealWeightFloatYesReal dispatched weight
TareFloatYesDispatched tare
CartonInfoListGetPalletInfoCartonListYesList of all pallet boxes

📝 GetPalletInfoCartonList Object

The GetPalletInfoCartonList object represents the boxes existing in the pallet.

Return Parameters

ParameterTypeRequiredDescription
ProductionCodeString(4)YesProduct production code
ProductNoString(25)YesExternal product code
IdentificationString(20)YesBox ID
ProductionDateDataHoraYesManufacturing date/time
StandardDateDataHoraYesStandard date
ExpirationDateDataHoraYesExpiration date
LotNoString(20)YesLot
ShiftNoString(30)YesShift
NetWeightFloatYesNet weight
StandardWeightFloatYesStandard weight
TareFloatYesDispatched tare

Request Example

curl --location 'http://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"GetPalletCartonList"' \
--header 'Content-Type: application/json' \
--data '{
"PalletIdentification": "PAL001"
}'

Response Example

{
"WebServiceReturn": {
"Status": "wrsSuccess",
"ErrorCode": "",
"Message": "",
"Actor": "",
"ReturnQuestion": null
},
"PalletInfo": {
"DispatchedQty": 10,
"PalletDate": "2025-02-20T12:00:00Z",
"NetWeight": 150.0,
"RealWeight": 155.0,
"Tara": 5.0,
"PalletStatus": "A",
"PalletNo": "PAL123",
"CartonInfoList": [
{
"ProductionCode": "PROD",
"ProductNo": "PROD001",
"Identification": "BOX001",
"ProductionDate": "2025-02-20T10:00:00Z",
"ExpirationDate": "2025-08-20T23:59:59Z",
"LotNo": "LOT001",
"Status": "Turno1",
"NetWeight": 15.0,
"StandardWeight": 15.5,
"Tara": 0.5
}
]
}
}