URL: components/Services/APIDiscussions.asmx
Метод: UpdateTopic
| Параметр | Описание |
|---|---|
ASPNETSessionId | Идентификатор сессии |
topicId | Идентификатор дискуссии |
title* | Тема дискуссии |
content | Содержание дискуссии |
Solved | Решение по дискуссии |
FieldName | Название реквизита |
FieldId | Идентификатор реквизита |
FieldVal | Значение реквизита |
<?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:str="http://streamline/"> <soapenv:Header/> <soapenv:Body> <str:UpdateTopic> <str:ASPNETSessionId>string</str:ASPNETSessionId> <str:topicWrapper> <str:TopicId>guid</str:TopicId> <str:Title>string</str:Title> <str:Content>string</str:Content> <str:Solved>boolean</str:Solved> </str:topicWrapper> <str:addressees> <str:guid>guid</str:guid> </str:addressees> <str:fields> <str:FieldWrapper> <str:FieldName>string</str:FieldName> <str:FieldId>string</str:FieldId> <str:FieldVal>string</str:FieldVal> <str:FieldType>string</str:FieldType> </str:FieldWrapper> </str:fields> </str:UpdateTopic> </soapenv:Body> </soapenv:Envelope>
| Параметр | Описание |
|---|---|
UpdateTopicResult | Результат выполнения запроса |
<?xml version="1.0" encoding="utf-8"?> <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <UpdateTopicResponse xmlns="http://streamline/"> <UpdateTopicResult>string</UpdateTopicResult> </UpdateTopicResponse> </s:Body> </s:Envelope>