Создание дискуссии с дополнительными полями

Метод CreateTopicWithFields

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
projectId*Идентификатор проекта
titleТема дискуссии
contentСодержание дискуссии
addresseesМассив идентификаторов пользователей
fieldsМассив с дополнительными реквизитами
FieldIdИдентификатор реквизита
FieldValЗначение реквизита

* – параметры, обязательные для заполнения.

<?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>
    <CreateTopicWithFields xmlns="http://tempuri.org/">
      <ASPNETSessionId>string</ASPNETSessionId>
      <projectId>string</projectId>
      <title>string</title>
      <content>string</content>
      <addressees>
        <string>string</string>
        <string>string</string>
      </addressees>
      <fields>
        <FieldWrapper>
          <FieldName>string</FieldName>
          <FieldId>string</FieldId>
          <FieldVal>string</FieldVal>
        </FieldWrapper>
        <FieldWrapper>
          <FieldName>string</FieldName>
          <FieldId>string</FieldId>
          <FieldVal>string</FieldVal>
        </FieldWrapper>
      </fields>
    </CreateTopicWithFields>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
CreateTopicWithFieldsResultРезультат выполнения запроса
<?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>
    <CreateTopicWithFieldsResponse xmlns="http://tempuri.org/">
      <CreateTopicWithFieldsResult>string</CreateTopicWithFieldsResult>
    </CreateTopicWithFieldsResponse>
  </soap:Body>
</soap:Envelope>