SoapQueryUser data structure

Element

Description

Type

Occurrences

active

Indicates whether this User is active

Boolean

1

customAttributes

List of Custom Attribute values, qualified by field name

CustomAttribute

1

customFields

List of Custom Field values, qualified by field name

CustomFields

1

firstName

User's first name

string

1

hasMobileAccess

Indicates whether the User has access to the mobile access component

Boolean

1

language

User's preferred language

string

1

lastName

User's last name

string

1

phoneLogin

User's numeric phone login

string

1

roles

User's assigned Roles

SoapRole

0 - unlimited

site

User's assigned Site

string

1

supervisors

List of the User's Supervisors

SoapFindSupervisor

0 - unlimited

targetName

User's target name

string

1

timeZone

User's preferred time zone

string

1

webUserLogin

User's web login details

WebUserLogin

1

Specification:

<xs:complexType name="SoapQueryUser">
  <xs:sequence>
    <xs:element name="active" type="xs:boolean"/>
    <xs:element name="customAttributes" nillable="true" type="ns:CustomAttributes"/>
    <xs:element name="customFields" nillable="true" type="ns:CustomFields"/>
    <xs:element name="firstName" nillable="true" type="xs:string"/>
    <xs:element name="hasMobileAccess" type="xs:boolean"/>
    <xs:element name="language" nillable="true" type="xs:string"/>
    <xs:element name="lastName" nillable="true" type="xs:string"/>
    <xs:element name="phoneLogin" nillable="true" type="xs:string"/>
    <xs:element minOccurs="0" maxOccurs="unbounded" name="roles" nillable="true" type="ns:SoapRole"/>
    <xs:element name="site" nillable="true" type="xs:string"/>
    <xs:element minOccurs="0" maxOccurs="unbounded" name="supervisors" nillable="true" type="ns:SoapFindSupervisor"/>
    <xs:element name="targetName" nillable="true" type="xs:string"/>
    <xs:element name="timeZone" nillable="true" type="xs:string"/>
    <xs:element name="webUserLogin" nillable="true" type="ns:WebUserLogin"/>
  </xs:sequence>
</xs:complexType>

Example