POST api/OnTheGo/Messages/SendMessageStatus
Request Information
URI Parameters
None.
Body Parameters
Collection of MessageStatusInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageGUID | globally unique identifier |
None. |
|
| StatusID | integer |
None. |
|
| UTCStatusTimeStamp | date |
None. |
|
| GPSLat | decimal number |
None. |
|
| GPSLong | decimal number |
None. |
|
| Velocity | decimal number |
None. |
|
| IsDelivered | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"MessageGUID": "9bc64eed-e87a-4821-b7ac-898a16699d26",
"StatusID": 2,
"UTCStatusTimeStamp": "2026-03-10T17:29:29.96Z",
"GPSLat": 4.0,
"GPSLong": 5.0,
"Velocity": 6.1,
"IsDelivered": true
},
{
"MessageGUID": "9bc64eed-e87a-4821-b7ac-898a16699d26",
"StatusID": 2,
"UTCStatusTimeStamp": "2026-03-10T17:29:29.96Z",
"GPSLat": 4.0,
"GPSLong": 5.0,
"Velocity": 6.1,
"IsDelivered": true
}
]
application/xml, text/xml
Sample:
<ArrayOfMessageModel.MessageStatusInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.OnTheGo.Models">
<MessageModel.MessageStatusInfo>
<GPSLat>4</GPSLat>
<GPSLong>5</GPSLong>
<IsDelivered>true</IsDelivered>
<MessageGUID>9bc64eed-e87a-4821-b7ac-898a16699d26</MessageGUID>
<StatusID>2</StatusID>
<UTCStatusTimeStamp>2026-03-10T17:29:29.9603767+00:00</UTCStatusTimeStamp>
<Velocity>6.1</Velocity>
</MessageModel.MessageStatusInfo>
<MessageModel.MessageStatusInfo>
<GPSLat>4</GPSLat>
<GPSLong>5</GPSLong>
<IsDelivered>true</IsDelivered>
<MessageGUID>9bc64eed-e87a-4821-b7ac-898a16699d26</MessageGUID>
<StatusID>2</StatusID>
<UTCStatusTimeStamp>2026-03-10T17:29:29.9603767+00:00</UTCStatusTimeStamp>
<Velocity>6.1</Velocity>
</MessageModel.MessageStatusInfo>
</ArrayOfMessageModel.MessageStatusInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.