Получение групп и входящих в них пользователей по идентификатору проекта
Метод: 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>