Web Services
Validate Account
public class LoginCredential
{
public string UserId;
public string Password;
public int ConnectionId; // Primary Key of Gateway Connection table
}public class ValidationResponse
{
public int ConnectionId;
public Result result;
public string message;
public int AccountId;
public string UserId;
public string Password;
public bool IsAuthenticated;
public bool Active;
public string Guid;
}
public enum Result
{
SUCCESS = 0,
FAILED
}Get Account Audit Report
Last updated
Was this helpful?