Содержание

Получение информации о группах пользователей


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>