Содержание

Редактирование дискуссии


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>