Получение групп и входящих в них пользователей по идентификатору проекта

Метод: GetGroupsWithPersonsIdsAllowedToWriteDiscussion

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
ProjectIdИдентификатор проекта
<?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>
    <GetGroupsWithPersonsIdsAllowedToWriteDiscussion xmlns="http://streamline/">
      <project>
        <ASPNETSessionId>string</ASPNETSessionId>
        <ProjectId>string</ProjectId>
      </project>
    </GetGroupsWithPersonsIdsAllowedToWriteDiscussion>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
PersonsGroupWrapperМассив с групп с пользователями
GroupIdИдентификатор группы пользователей
GroupNameНазвание группы
PersonsIdsМассив идентификаторов пользователей
<?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>
    <GetGroupsWithPersonsIdsAllowedToWriteDiscussionResponse xmlns="http://streamline/">
      <GetGroupsWithPersonsIdsAllowedToWriteDiscussionResult>
        <PersonsGroupWrapper>
          <GroupId>string</GroupId>
          <GroupName>string</GroupName>
          <PersonsIds>
            <string>string</string>
            <string>string</string>
          </PersonsIds>
        </PersonsGroupWrapper>
        <PersonsGroupWrapper>
          <GroupId>string</GroupId>
          <GroupName>string</GroupName>
          <PersonsIds>
            <string>string</string>
            <string>string</string>
          </PersonsIds>
        </PersonsGroupWrapper>
      </GetGroupsWithPersonsIdsAllowedToWriteDiscussionResult>
    </GetGroupsWithPersonsIdsAllowedToWriteDiscussionResponse>
  </soap:Body>
</soap:Envelope>