Отправка уведомления в Системе

Метод: SendMessage

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
messageHTML для отображения сообщения
personIdsИдентификаторы пользователей-получателей
typeТип сообщения
Возможные варианты: Information или Important
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendMessage xmlns="http://tempuri.org/">
      <ASPNETSessionId>string</ASPNETSessionId>
      <message>string</message>
      <personIds>
        <guid>guid</guid>
        <guid>guid</guid>
      </personIds>
      <type>Information or Important</type>
    </SendMessage>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
SendMessageResultРезультат выполнения метода
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendMessageResponse xmlns="http://tempuri.org/">
      <SendMessageResult>guid</SendMessageResult>
    </SendMessageResponse>
  </soap:Body>
</soap:Envelope>