POST api/Account/validate

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AsapResponseOfUserLoginSessionDTO
NameDescriptionTypeAdditional 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": "cb41f483-0db7-41c3-bc13-961f29969d3c",
    "UserId": 2,
    "Json": "sample string 3",
    "ExpirationTime": "2025-04-03T19:02:32.0146455-07:00",
    "DeviceType": 5,
    "DateCreated": "2025-04-03T19:02:32.0146455-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-04-03T19:02:32.0146455-07:00</d2p1:DateCreated>
    <d2p1:DeviceType>5</d2p1:DeviceType>
    <d2p1:ExpirationTime>2025-04-03T19:02:32.0146455-07:00</d2p1:ExpirationTime>
    <d2p1:Json>sample string 3</d2p1:Json>
    <d2p1:SessionId>cb41f483-0db7-41c3-bc13-961f29969d3c</d2p1:SessionId>
    <d2p1:UserId>2</d2p1:UserId>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfUserLoginSessionDTO9DQd0Pqc>