Получение подпроектов по типу

Метод: GetProjectChilds

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
TypeIdИдентификатор типа проекта
ParentProjectIdИдентификатор родительского проекта

Возможные статусы проектов:

  • «1» – Предполагаемый
  • «3» – В работе
  • «4» – Требует внимания
  • «5» – Наивысший приоритет
  • «6» – Завершен
  • «7» – Отменен
  • «8» – Отложен
  • «9» – Готов к проверке
<?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>
    <GetProjectChilds xmlns="http://streamline/">
      <contract>
        <ASPNETSessionId>string</ASPNETSessionId>
        <ParentProjectId>string</ParentProjectId>
        <TypeId>string</TypeId>
      </contract>
    </GetProjectChilds>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
GetProjectChildsResultМассив с проектами
ProjectChildWrapperМассив с информацией о проекте
UIDИдентификатор проекта
ParentProjectIdИдентификатор родительского проекта
ParentTypeIdТип родительского проекта
<?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>
    <GetProjectChildsResponse xmlns="http://streamline/">
      <GetProjectChildsResult>
        <ProjectChildWrapper>
          <UID>string</UID>
          <ParentProjectId>string</ParentProjectId>
          <ParentTypeId>string</ParentTypeId>
        </ProjectChildWrapper>
        <ProjectChildWrapper>
          <UID>string</UID>
          <ParentProjectId>string</ParentProjectId>
          <ParentTypeId>string</ParentTypeId>
        </ProjectChildWrapper>
      </GetProjectChildsResult>
    </GetProjectChildsResponse>
  </soap:Body>
</soap:Envelope>