Получение информации о всех типах объектов в системе

Метод GetProjectTypes

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
<?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>
    <GetProjectTypes xmlns="http://streamline/">
      <ASPNETSessionId>string</ASPNETSessionId>
    </GetProjectTypes>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
ProjectTypeWrapperМассив с типом проекта
IDGUID объекта
NameНазвание типа объекта
<?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>
    <GetProjectTypesResponse xmlns="http://streamline/">
      <GetProjectTypesResult>
        <ProjectTypeWrapper>
          <Id>guid</Id>
          <Name>string</Name>
        </ProjectTypeWrapper>
        <ProjectTypeWrapper>
          <Id>guid</Id>
          <Name>string</Name>
        </ProjectTypeWrapper>
      </GetProjectTypesResult>
    </GetProjectTypesResponse>
  </soap:Body>
</soap:Envelope>