GET api/AdroitERP_CheckSession?token={token}&myconn={myconn}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| myconn | string |
Required |
Body Parameters
None.
Response Information
Resource Description
User_Session| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UserId | string |
None. |
|
| SessionToken | string |
None. |
|
| CreatedAt | date |
None. |
|
| ExpiresAt | date |
None. |
|
| IsActive | boolean |
None. |
|
| IpAddress | string |
None. |
|
| DeviceInfo | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "5ea89141-f52b-4758-b40c-6b5fb0023b72",
"UserId": "sample string 2",
"SessionToken": "sample string 3",
"CreatedAt": "2026-08-12T10:40:57.2610913+00:00",
"ExpiresAt": "2026-08-12T10:40:57.2610913+00:00",
"IsActive": true,
"IpAddress": "sample string 7",
"DeviceInfo": "sample string 8"
}
application/xml, text/xml
Sample:
<User_Session xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis"> <CreatedAt>2026-08-12T10:40:57.2610913+00:00</CreatedAt> <DeviceInfo>sample string 8</DeviceInfo> <ExpiresAt>2026-08-12T10:40:57.2610913+00:00</ExpiresAt> <Id>5ea89141-f52b-4758-b40c-6b5fb0023b72</Id> <IpAddress>sample string 7</IpAddress> <IsActive>true</IsActive> <SessionToken>sample string 3</SessionToken> <UserId>sample string 2</UserId> </User_Session>