FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getUsersQueryResponse

Description

A getUsersQueryResponse message contains an element of getUsersQueryResponseType.

Derived By

Type getUsersQueryResponseType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
statusInfo  StatusInfoType  1..1 
Element  Data Type  Description 
status
StatusType

Returns one of the following:

  • SUCCESS—All features in the request were processed.

  • PARTIAL_FAILURE—Some, but not all features in the request were processed. The getCount and getQuery operations never return PARTIAL_FAILURE.

  • FAILURE—None of the features in the request were processed.

reason
string
Gives reason for partial failure or failure.
 
responseData  getUsersQueryResponseDataType  0..1  See getUsersQueryResponseDataType.
Referenced By
Name  Type 
getUsersQuery  Method 
XML Example

The following XML fragment illustrates a successful getUsersQueryResponse message:

<getUsersQueryResponse>
     <statusInfo>
          <status>SUCCESS</status>
     </statusInfo>
     <responseData>
          <user>
               <userIdentifier>
                    <uniqueId>HID-20204</uniqueId>
                    <userName>jsmith@example.com</userName>
                    <primaryKeys>
                         <firstName>John</firstName>
                         <lastName>Smith</lastName>
                         <emailAddress>jsmith@example.com</emailAddress>
                         <phoneNumber>408-123-4567</phoneNumber>
                    </primaryKeys>
               </userIdentifier>
               <displayName>Smith John</displayName>
               <optIn>false</optIn>
               <street>1234 Main Street</street>
               <city>San Francisco</city>
               <state>CA</state>
               <zipcode>12345</zipcode>
               <country>US</country>
               <status>Active</status>
               <locale>en_US</locale>
               <timezone>America/Dawson</timezone>
               <shared>false</shared>
               <domain>FLEXnet</domain>
               <acctRolesList>
                    <acctRoles>
                         <account>
                              <uniqueId>HID-100040</uniqueId>
                              <name>Account_Step</name>
                              <primaryKeys>
                                   <id>Acme</id>
                              </primaryKeys>
                         </account>
                         <roles>
                              <roleName>Portal Admin User Role</roleName>
                         </roles>
                    </acctRoles>
                    <acctRoles>
                         <account>
                              <primaryKeys>
                                   <id>Delta</id>
                              </primaryKeys>
                         </account>
                         <roles>
                              <roleName>Portal Admin User Role</roleName>
                         </roles>
                    </acctRoles>
               </acctRolesList>
          </user>
     </responseData>
</getUsersQueryResponse>