GET api/Atlas?ShipmentNo={ShipmentNo}&VehicleID={VehicleID}

Roro Tracking information from Grimaldi ERP corportate system (ATLAS). Security Token needed.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "2024-04-25T06:56:44.7607203+02:00"
  },
  {
    "location_name": "sample string 1",
    "move_desc": "sample string 2",
    "move_date_time": "2024-04-25T06:56:44.7607203+02: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>2024-04-25T06:56:44.7607203+02:00</move_date_time>
    <move_desc>sample string 2</move_desc>
  </TTrackingInfo>
  <TTrackingInfo>
    <location_name>sample string 1</location_name>
    <move_date_time>2024-04-25T06:56:44.7607203+02:00</move_date_time>
    <move_desc>sample string 2</move_desc>
  </TTrackingInfo>
</ArrayOfTTrackingInfo>