POST api/Account/validate
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
AsapResponseOfUserLoginSessionDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | UserLoginSessionDTO |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": {
"SessionId": "3b9fcf12-936b-4412-b765-fd468dbc771e",
"UserId": 2,
"Json": "sample string 3",
"ExpirationTime": "2025-10-30T07:33:49.3304916-07:00",
"DeviceType": 5,
"DateCreated": "2025-10-30T07:33:49.3304916-07:00"
},
"totalCount": 3
}
application/xml, text/xml
Sample:
<AsapResponseOfUserLoginSessionDTO9DQd0Pqc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
<isSuccess>true</isSuccess>
<jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO">
<d2p1:DateCreated>2025-10-30T07:33:49.3304916-07:00</d2p1:DateCreated>
<d2p1:DeviceType>5</d2p1:DeviceType>
<d2p1:ExpirationTime>2025-10-30T07:33:49.3304916-07:00</d2p1:ExpirationTime>
<d2p1:Json>sample string 3</d2p1:Json>
<d2p1:SessionId>3b9fcf12-936b-4412-b765-fd468dbc771e</d2p1:SessionId>
<d2p1:UserId>2</d2p1:UserId>
</jsonObj>
<message>sample string 2</message>
<totalCount>3</totalCount>
</AsapResponseOfUserLoginSessionDTO9DQd0Pqc>