POST api/LOGIN?username={username}&password={password}
Login a user into the system
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username |
Obligatory. Username |
string |
Required |
| password |
Obligatory. Password as MD5 hashed |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
CUSTODIANS_CMD_RESPONSE| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| DATA | Collection of CUSTODIANS |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": {
"Success": true,
"Code": "0",
"DetailedMessage": "sample string 3",
"Message": "sample string 2"
},
"DATA": [
{
"ACTIVE": true,
"CUSTODIAN_TYPE": 64,
"CUSTODIAN_ID": 1,
"LAST_NOTIFY_DELETE": "2025-11-14T21:14:08.7247761Z",
"NOTES": "sample string 7",
"LOGIN_PASSWORD": "sample string 5",
"LOGIN_NAME": "sample string 4",
"CUSTODIAN_NAME": "sample string 2"
},
{
"ACTIVE": true,
"CUSTODIAN_TYPE": 64,
"CUSTODIAN_ID": 1,
"LAST_NOTIFY_DELETE": "2025-11-14T21:14:08.7247761Z",
"NOTES": "sample string 7",
"LOGIN_PASSWORD": "sample string 5",
"LOGIN_NAME": "sample string 4",
"CUSTODIAN_NAME": "sample string 2"
}
]
}
