Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sv translation
languageen

Status
colourRed
titleDEPRECATED

 


Return all messages, send by vehicle to portal, inside the defined request time range.

Description

get_messages_pnd.asp?company=RTI_COMPANYKEY&vehicle=RTI_VEHICLEKEY&mode=CSV&time=m

Parameter

Parameter
Description
Type
Note
Required
companyRTI company keystring 
yes
vehicle RTI vehicle keystringvehicle or group must be definedyes
groupRTI group keystringvehicle or group must be definedyes
timeShow messages from last x minutes.integerValid range is 5-60yes
modeThe data output formatstringCurrently only "CSV" is supported, and also the default value.no

Return

Returned data are in string format. On error "ERROR:Description" is returned.

CSV format

If the request is valid, the data are returned as CSV (Comma Separated Value) format. The first response line is always
the header, defining the column names. After it the personal data follows.

Meta informations

SeparatorSemicolon ( ; )
DelimiterDouble quote ( " )
Line break0x0D 0x0A (CarriageReturn LineFeed)
HeaderLine 1
EncodingUTF-8

Columns

Column
Description
DATEMessage create date (DD.MM.YYYY HH:MM:SS)
TEXTRecieved message text
CARThe vehicle sign

Example

Code Block
titleExample-Output
"DATE";"TEXT";"CAR";
04.08.2010 09:44:19;"Come later...";"Vehicle1";
04.08.2010 09:57:51;"Bin gleich da";"Vehicle1";

Example call

Code Block
titleAll messages from selected vehicle within the last 2 minutes
httphttps://map.yellowfox.de/rti/get_messages_pnd.asp?company=COMPANY_RTIKEY&vehicle=VEHICLE_RTIKEY&mode=CSV&time=2