[v10] AuthSystemUser
 October 14, 2025
    
            The settings can be found on the AhsayCBS web console at:
- System Settings > Basic > Administrative Access
URL
https://CBS.EXAMPLE.COM/obs/api/json/AuthSystemUser.do
Available Since Version: 9.1
Parameters
| Key | Type | Description | 
|---|---|---|
| SysUser | String | Username of an AhsayCBS System User with Admin or API role. | 
| SysPwd | String | Password matching SysUser. | 
Return Values
| Key | Type | Description | 
|---|---|---|
| Status | String | "OK" or "Error" | 
| Message | String | Error message, it only appears if status displays "Error". | 
| ExptType | String | The type of exception, will only be displayed if the status is "Error". | 
Examples
Example 1: For SysUser with Admin role
INPUT
{
	"SysUser":"Admin",
	"SysPwd":"password"
}
OUTPUT
{
	"Status":"OK"
}
Example 2: For SysUser with Read-Only Admin role
INPUT
{
	"SysUser":"Read-Only Admin",
	"SysPwd":"sample"
}
OUTPUT
{
	"Status":"Error",
	"Message":"Incorrect system username/password",
	"ExptType":"com.ahsay.obs.core.dbs.c"
}
