DynamicSectionCreate

Создаёт расширенную секцию в типе карточки.

Запрос

POST /DocsVision/StorageServer/StorageServerService.asmx HTTP/1.1
Host: DOCSVISION_SERVER.COM
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/DynamicSectionCreate"

<?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>
    <DynamicSectionCreate xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
      <sessionId>guid</sessionId>
      <cardTypeId>guid</cardTypeId>
      <parentSectionId>guid</parentSectionId>
      <sectionXml>string</sectionXml>
    </DynamicSectionCreate>
  </soap:Body>
</soap:Envelope>
Параметры
sessionId

Идентификатор пользовательской сессии

cardTypeId

Идентификатор типа карточки

parentSectionId

Идентификатор родительской секции

sectionXml

Метаданные расширенной секции

Ответ

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?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>
    <DynamicSectionCreateResponse xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
      <newSectionId>guid</newSectionId>
    </DynamicSectionCreateResponse>
  </soap:Body>
</soap:Envelope>