Показать страницуИстория страницыСсылки сюдаЭкспорт в PDFНаверх Эта страница только для чтения. Вы можете посмотреть её исходный текст, но не можете его изменить. Сообщите администратору, если считаете, что это неправильно. ====== Получение групп и входящих в них пользователей по идентификатору проекта ====== Метод: **GetGroupsWithPersonsIdsAllowedToWriteDiscussion** =====Передаваемые параметры===== ^Параметр^Описание^ |ASPNETSessionId|Идентификатор сессии| |ProjectId|Идентификатор проекта| <code xml> <?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> </code> =====Возвращаемые параметры===== ^Параметр^Описание^ |PersonsGroupWrapper|Массив с групп с пользователями| |GroupId|Идентификатор группы пользователей| |GroupName|Название группы| |PersonsIds|Массив идентификаторов пользователей| <code xml> <?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> </code>