Получение списка пользователей, которым разрешен вход в систему

Метод: GetAllowedPersons

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
<?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>
    <GetAllowedPersons xmlns="http://streamline/">
      <ASPNETSessionId>string</ASPNETSessionId>
    </GetAllowedPersons>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
UIDИдентификатор пользователя
FullNameПолное имя пользователя
EMailЭлектронный почтовый ящик пользователя
URLСсылка на пользователя
LinkToADПривязка пользователю к Active Directory
<?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>
    <GetAllowedPersonsResponse xmlns="http://streamline/">
      <GetAllowedPersonsResult>
        <Persons>
          <SlPerson>
            <UID>string</UID>
            <FullName>string</FullName>
            <EMail>string</EMail>
            <URL>string</URL>
            <LinkToAD>string</LinkToAD>
          </SlPerson>
          <SlPerson>
            <UID>string</UID>
            <FullName>string</FullName>
            <EMail>string</EMail>
            <URL>string</URL>
            <LinkToAD>string</LinkToAD>
          </SlPerson>
        </Persons>
      </GetAllowedPersonsResult>
    </GetAllowedPersonsResponse>
  </soap:Body>
</soap:Envelope>