Метод: GetProjectChilds
Параметр | Описание |
---|---|
ASPNETSessionId | Идентификатор сессии |
TypeId | Идентификатор типа проекта |
ParentProjectId | Идентификатор родительского проекта |
Возможные статусы проектов:
<?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>