Отправка уведомления в Системе
Метод: SendMessage
Передаваемые параметры
Параметр | Описание |
---|---|
ASPNETSessionId | Идентификатор сессии |
message | HTML для отображения сообщения |
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>