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": "b4d98171-a62b-4436-95d3-a61f37bf719d",
"StatusID": 2,
"UTCStatusTimeStamp": "2025-11-04T20:53:09.871Z",
"GPSLat": 4.0,
"GPSLong": 5.0,
"Velocity": 6.1,
"IsDelivered": true
},
{
"MessageGUID": "b4d98171-a62b-4436-95d3-a61f37bf719d",
"StatusID": 2,
"UTCStatusTimeStamp": "2025-11-04T20:53:09.871Z",
"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>b4d98171-a62b-4436-95d3-a61f37bf719d</MessageGUID>
<StatusID>2</StatusID>
<UTCStatusTimeStamp>2025-11-04T20:53:09.8713659+00:00</UTCStatusTimeStamp>
<Velocity>6.1</Velocity>
</MessageModel.MessageStatusInfo>
<MessageModel.MessageStatusInfo>
<GPSLat>4</GPSLat>
<GPSLong>5</GPSLong>
<IsDelivered>true</IsDelivered>
<MessageGUID>b4d98171-a62b-4436-95d3-a61f37bf719d</MessageGUID>
<StatusID>2</StatusID>
<UTCStatusTimeStamp>2025-11-04T20:53:09.8713659+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.