GET api/Info?ShipmentNo={ShipmentNo}&VehicleID={VehicleID}
Roro Tracking information from Grimaldi ERP corportate system. Security Token needed.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ShipmentNo |
Shipment reference provided by Grimaldi (ie S3-1234567) |
string |
Required |
| VehicleID |
VIN (ie ABC12345678901234) or Plate Registration number (ShortSea) (ie AA001AA for single units or EE001EE/TT001TT for truck and trailer) |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TTrackingInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| location_name | string |
None. |
|
| move_desc | string |
None. |
|
| move_date_time | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"location_name": "sample string 1",
"move_desc": "sample string 2",
"move_date_time": "2025-11-02T07:15:51.3454379+01:00"
},
{
"location_name": "sample string 1",
"move_desc": "sample string 2",
"move_date_time": "2025-11-02T07:15:51.3454379+01:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfTTrackingInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNetAPI.Models">
<TTrackingInfo>
<location_name>sample string 1</location_name>
<move_date_time>2025-11-02T07:15:51.3454379+01:00</move_date_time>
<move_desc>sample string 2</move_desc>
</TTrackingInfo>
<TTrackingInfo>
<location_name>sample string 1</location_name>
<move_date_time>2025-11-02T07:15:51.3454379+01:00</move_date_time>
<move_desc>sample string 2</move_desc>
</TTrackingInfo>
</ArrayOfTTrackingInfo>