Pallet Information
The GetPalletInfo endpoint returns pallet information from the MIMS system.
How to query pallet information
HTTP POST Request
| Request Type | Example URL |
|---|---|
| POST | {{url_base}}/GetPalletInfo |
| Example | http://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"GetPalletInfo" |
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| PalletIdentification | String(20) | Yes | Pallet identification |
Return
| Parameter | Type | Required | Description |
|---|---|---|---|
| WebServiceReturn | WebServiceReturn | Yes | Standard WebService response information on method execution |
| PalletInfo | GetPalletInfo | Yes | Object containing pallet information |
📝 GetPalletInfo Object
The GetPalletInfo object represents a pallet in the MIMS system.
Return Parameters
Parameter Type Required Description PalletNo String(25) Yes External pallet code PalletDate DataHora Yes Pallet date PalletStatus String(2) Yes Pallet status DispatchQty Integer Yes Quantity of dispatched boxes NetWeight Float Yes Net weight RealWeight Float Yes Real dispatched weight Tare Float Yes Dispatched tare CartonInfoList GetPalletInfoCartonList Yes List of all pallet boxes
📝 GetPalletInfoCartonList Object
The GetPalletInfoCartonList object represents the boxes existing in the pallet.
Return Parameters
Parameter Type Required Description ProductionCode String(4) Yes Product production code ProductNo String(25) Yes External product code Identification String(20) Yes Box ID ProductionDate DataHora Yes Manufacturing date/time StandardDate DataHora Yes Standard date ExpirationDate DataHora Yes Expiration date LotNo String(20) Yes Lot ShiftNo String(30) Yes Shift NetWeight Float Yes Net weight StandardWeight Float Yes Standard weight Tare Float Yes Dispatched 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
}
]
}
}