Получение информации о пользователях
URL: components/services/persons.asmx
Метод: GetPersons
Передаваемый параметр
| Параметр | Описание |
|---|---|
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:GetPersons> <str:ASPNETSessionId>string</str:ASPNETSessionId> </str:GetPersons> </soapenv:Body> </soapenv:Envelope>
Возвращаемые параметры
| Параметр | Описание |
|---|---|
UID | Идентификатор пользователя |
FullName | Полное имя пользователя |
EMail | Электронный почтовый ящик пользователя |
URL | Ссылка на пользователя |
LinkToAD | Привязка пользователю к Active Directory |
<?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"> <GetPersonsResponse xmlns="http://streamline/"> <GetPersonsResult> <Errors/> <Objects/> <Persons> <SlPerson> <UID>string</UID> <FullName>string</FullName> <EMail>string</EMail> <URL>string</URL> <LinksToOpenIdConnect/> <ChangedAt>dateTime</ChangedAt> <LicenseType>string</LicenseType> <ExpireDate>string</ExpireDate> <QuestionsToEmail>string</QuestionsToEmail> <MessagesToEmail>string</MessagesToEmail> <NotifyToAltEmail>string</NotifyToAltEmail> <Groups> <GroupWrapper> <Id>string</Id> </GroupWrapper> <GroupWrapper> <Id>string</Id> </GroupWrapper> </Groups> </SlPerson> <SlPerson> <UID>string</UID> <FullName>string</FullName> <EMail>string</EMail> <URL>string</URL> <LinksToOpenIdConnect/> <ChangedAt>dateTime</ChangedAt> <LicenseType>string</LicenseType> <ExpireDate>string</ExpireDate> <QuestionsToEmail>string</QuestionsToEmail> <MessagesToEmail>string</MessagesToEmail> <NotifyToAltEmail>string</NotifyToAltEmail> <Groups> <GroupWrapper> <Id>string</Id> </GroupWrapper> </Groups> </SlPerson> </Persons> </GetPersonsResult> </GetPersonsResponse> </s:Body> </s:Envelope>