Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

WCF


Code Block
languagec#
title Method
public AuthServerFindUsersResponse FindUsers(string authServerPartnerLoginName, 
                 string authServerPartnerLoginPassword, 
                 string queryFilter,
                 FindUserFilterType  queryType
               )

...

Code Block
languagec#
titleSample WCF C# Repsonse
 if (resp.ErrorCode != 0)  {      
       message.Text = resp.ErrorMsg;
       return false;
 }


REST


REST parameterdata typedescription
spAccountLoginNamestringSurePassId account login name
spAccountLoginKeystringSurePassId account login key
typestringfind_users
queryFilterstringThe filter to be used for searching for users.  The value can user SQL wildcards such as %
queryFilterTypestringIdentifies the type of queryFilter. Possible values are:  username or email. If omitted, username is assumed

...