POST api/OnTheGo/Messages/SendMessage
Request Information
URI Parameters
None.
Body Parameters
Collection of MesssageInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| MessageGUID | globally unique identifier | 
                             None.  | 
                |
| ParentMsgGUID | globally unique identifier | 
                             None.  | 
                |
| UTCStatusTimeStamp | date | 
                             None.  | 
                |
| SentByEmpID | integer | 
                             None.  | 
                |
| SentByEmpName | string | 
                             None.  | 
                |
| SentToEmpID | integer | 
                             None.  | 
                |
| PriorityLevel | integer | 
                             None.  | 
                |
| IsResponseRequired | boolean | 
                             None.  | 
                |
| IsCannedResponseMsg | boolean | 
                             None.  | 
                |
| CannedResponses | string | 
                             None.  | 
                |
| MessageBody | string | 
                             None.  | 
                |
| CurrentStatusID | integer | 
                             None.  | 
                |
| MessageStatuses | Collection of MessageStatusInfo | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "MessageGUID": "5a873d37-c1ec-4415-af6b-06133f72fa8e",
    "ParentMsgGUID": "cbb0cabf-e77d-4938-acc9-ddbae4e3c818",
    "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
    "SentByEmpID": 3,
    "SentByEmpName": "sample string 4",
    "SentToEmpID": 5,
    "PriorityLevel": 6,
    "IsResponseRequired": true,
    "IsCannedResponseMsg": true,
    "CannedResponses": "sample string 9",
    "MessageBody": "sample string 10",
    "CurrentStatusID": 11,
    "MessageStatuses": [
      {
        "MessageGUID": "0c97622c-0d90-4817-83d9-67e2a6e14dbc",
        "StatusID": 2,
        "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
        "GPSLat": 4.0,
        "GPSLong": 5.0,
        "Velocity": 6.1,
        "IsDelivered": true
      },
      {
        "MessageGUID": "0c97622c-0d90-4817-83d9-67e2a6e14dbc",
        "StatusID": 2,
        "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
        "GPSLat": 4.0,
        "GPSLong": 5.0,
        "Velocity": 6.1,
        "IsDelivered": true
      }
    ]
  },
  {
    "MessageGUID": "5a873d37-c1ec-4415-af6b-06133f72fa8e",
    "ParentMsgGUID": "cbb0cabf-e77d-4938-acc9-ddbae4e3c818",
    "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
    "SentByEmpID": 3,
    "SentByEmpName": "sample string 4",
    "SentToEmpID": 5,
    "PriorityLevel": 6,
    "IsResponseRequired": true,
    "IsCannedResponseMsg": true,
    "CannedResponses": "sample string 9",
    "MessageBody": "sample string 10",
    "CurrentStatusID": 11,
    "MessageStatuses": [
      {
        "MessageGUID": "0c97622c-0d90-4817-83d9-67e2a6e14dbc",
        "StatusID": 2,
        "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
        "GPSLat": 4.0,
        "GPSLong": 5.0,
        "Velocity": 6.1,
        "IsDelivered": true
      },
      {
        "MessageGUID": "0c97622c-0d90-4817-83d9-67e2a6e14dbc",
        "StatusID": 2,
        "UTCStatusTimeStamp": "2025-11-04T15:24:37.269Z",
        "GPSLat": 4.0,
        "GPSLong": 5.0,
        "Velocity": 6.1,
        "IsDelivered": true
      }
    ]
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfMessageModel.MesssageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.OnTheGo.Models">
  <MessageModel.MesssageInfo>
    <CannedResponses>sample string 9</CannedResponses>
    <CurrentStatusID>11</CurrentStatusID>
    <IsCannedResponseMsg>true</IsCannedResponseMsg>
    <IsResponseRequired>true</IsResponseRequired>
    <MessageBody>sample string 10</MessageBody>
    <MessageGUID>5a873d37-c1ec-4415-af6b-06133f72fa8e</MessageGUID>
    <MessageStatuses>
      <MessageModel.MessageStatusInfo>
        <GPSLat>4</GPSLat>
        <GPSLong>5</GPSLong>
        <IsDelivered>true</IsDelivered>
        <MessageGUID>0c97622c-0d90-4817-83d9-67e2a6e14dbc</MessageGUID>
        <StatusID>2</StatusID>
        <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
        <Velocity>6.1</Velocity>
      </MessageModel.MessageStatusInfo>
      <MessageModel.MessageStatusInfo>
        <GPSLat>4</GPSLat>
        <GPSLong>5</GPSLong>
        <IsDelivered>true</IsDelivered>
        <MessageGUID>0c97622c-0d90-4817-83d9-67e2a6e14dbc</MessageGUID>
        <StatusID>2</StatusID>
        <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
        <Velocity>6.1</Velocity>
      </MessageModel.MessageStatusInfo>
    </MessageStatuses>
    <ParentMsgGUID>cbb0cabf-e77d-4938-acc9-ddbae4e3c818</ParentMsgGUID>
    <PriorityLevel>6</PriorityLevel>
    <SentByEmpID>3</SentByEmpID>
    <SentByEmpName>sample string 4</SentByEmpName>
    <SentToEmpID>5</SentToEmpID>
    <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
  </MessageModel.MesssageInfo>
  <MessageModel.MesssageInfo>
    <CannedResponses>sample string 9</CannedResponses>
    <CurrentStatusID>11</CurrentStatusID>
    <IsCannedResponseMsg>true</IsCannedResponseMsg>
    <IsResponseRequired>true</IsResponseRequired>
    <MessageBody>sample string 10</MessageBody>
    <MessageGUID>5a873d37-c1ec-4415-af6b-06133f72fa8e</MessageGUID>
    <MessageStatuses>
      <MessageModel.MessageStatusInfo>
        <GPSLat>4</GPSLat>
        <GPSLong>5</GPSLong>
        <IsDelivered>true</IsDelivered>
        <MessageGUID>0c97622c-0d90-4817-83d9-67e2a6e14dbc</MessageGUID>
        <StatusID>2</StatusID>
        <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
        <Velocity>6.1</Velocity>
      </MessageModel.MessageStatusInfo>
      <MessageModel.MessageStatusInfo>
        <GPSLat>4</GPSLat>
        <GPSLong>5</GPSLong>
        <IsDelivered>true</IsDelivered>
        <MessageGUID>0c97622c-0d90-4817-83d9-67e2a6e14dbc</MessageGUID>
        <StatusID>2</StatusID>
        <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
        <Velocity>6.1</Velocity>
      </MessageModel.MessageStatusInfo>
    </MessageStatuses>
    <ParentMsgGUID>cbb0cabf-e77d-4938-acc9-ddbae4e3c818</ParentMsgGUID>
    <PriorityLevel>6</PriorityLevel>
    <SentByEmpID>3</SentByEmpID>
    <SentByEmpName>sample string 4</SentByEmpName>
    <SentToEmpID>5</SentToEmpID>
    <UTCStatusTimeStamp>2025-11-04T15:24:37.2690052+00:00</UTCStatusTimeStamp>
  </MessageModel.MesssageInfo>
</ArrayOfMessageModel.MesssageInfo>
        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.