UserDetail

The full description of a user.

Structure
{
     unsigned int userId; 
     string userName; 
     string firstName; 
     string lastName; 
     string password; 
     string comment; 
     long modifiedTime; 
     long createdTime; 
     long syncStartTime; 
     boolean isAuthHashed; 
     WebChannelArray webChannelArray;
     GroupArray groupArray; 
};
Fields
  • userId   The unique ID of the user.

  • userName   The unique user name.

  • firstName   The user’s first name.

  • lastName   The user’s last name.

  • password   The user’s password.

  • comment   An optional comment about the user.

  • modifiedTime   The time the user information was last modified.

  • createdTime   The time user was created.

  • syncStartTime   The time the user last started a synchronization.

  • isAuthHashed   Indicates whether the client password is hashed. INTERNAL – In future releases, may not be backward compatible or may not be supported at all.

  • webChannelArray   A list of channels to which the user is subscribed.

  • groupArray   A list of groups to which the user is subscribed.

Remarks

The information is an array of User structures. info.infoId = 0 inserts, otherwise it updates. INTERNAL – In future releases, may not be backward compatible or may not be supported at all.