URL: components/services/persons.asmx
Метод: GetGroups
| Параметр | Описание |
|---|---|
ASPNETSessionId | Идентификатор сессии |
<?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:str="http://streamline/"> <soapenv:Header/> <soapenv:Body> <str:GetGroups> <str:ASPNETSessionId>string</str:ASPNETSessionId> </str:GetGroups> </soapenv:Body> </soapenv:Envelope>
| Параметр | Описание |
|---|---|
GetGroupsResult | Массив с информацией о группах пользователей |
SlGroup | Массив с параметрами группы |
UID | Идентификатор группы |
Name | Название группы |
Members | Массив идентификаторов пользователей в группе |
<?xml version="1.0" encoding="utf-8"?> <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <GetGroupsResponse xmlns="http://streamline/"> <GetGroupsResult> <Errors/> <Objects> <SlGroup> <UID>string</UID> <Name>string</Name> <Members> <string></string> <string></string> </Members> </SlGroup> <SlGroup> <UID>string</UID> <Name>string</Name> <Members/> </SlGroup> </Objects> </GetGroupsResult> </GetGroupsResponse> </s:Body> </s:Envelope>