WCF
Code Block | ||||
---|---|---|---|---|
| ||||
public AuthServerFindUsersResponse FindUsers(string authServerPartnerLoginName, string authServerPartnerLoginPassword, string queryFilter, FindUserFilterType queryType ) |
...
Code Block | ||||
---|---|---|---|---|
| ||||
if (resp.ErrorCode != 0) { message.Text = resp.ErrorMsg; return false; } |
REST
REST parameter | data type | description |
---|---|---|
spAccountLoginName | string | SurePassId account login name |
spAccountLoginKey | string | SurePassId account login key |
type | string | find_users |
queryFilter | string | The filter to be used for searching for users. The value can user SQL wildcards such as % |
queryFilterType | string | Identifies the type of queryFilter. Possible values are: username or email. If omitted, username is assumed |
...