FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getUserAccountsExpiryQueryResponse

Description

A getUserAccountsExpiryQueryResponse message contains an element of getUserAccountsExpiryQueryResponseType.

Derived By

Type getUserAccountsExpiryQueryResponseType

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  getUserAccountsExpiryQueryResponseDataType  0..1  See getUserAccountsExpiryQueryResponseDataType.
Referenced By
Name  Type 
getUserAccountsExpiryQuery  Method 
XML Example

The following XML fragment illustrates a successful getUserAccountsExpiryQueryResponse message:

<getUserAccountsExpiryQueryResponse>
     <statusInfo>
          <status>SUCCESS</status>
     </statusInfo>
     <responseData>
          <userAccountExpiryData>
               <userData>
                    <userIdentifier>
                         <uniqueId>HID-8</uniqueId>
                         <userName>jsmith@company.com</userName>
                         <primaryKeys>
                              <firstName>John</firstName>
                              <lastName>Smith</lastName>
                              <emailAddress>jsmith@company.com</emailAddress>
                              <phoneNumber></phoneNumber>
                         </primaryKeys>
                    </userIdentifier>
                    <displayName>John Smith</displayName>
                    <status>Active</status>
                    <locale>en_US</locale>
                    <timezone>GMT-8.0DST60</timezone>
                    <shared>false</shared>
                    <dateCreated>2018-01-16T05:20:57.193Z</dateCreated>
               </userData>
               <accountExpiryData>
                    <accountID>ACME</accountID>
                    <expiryDate>2018-01-12</expiryDate>
               </accountExpiryData>
          </userAccountExpiryData>
     </responseData>
</getUserAccountsExpiryQueryResponse>