POST api/CheckSession
Request Information
URI Parameters
None.
Body Parameters
RequestInfoCheckFlat| Name | Description | Type | Additional information |
|---|---|---|---|
| Licence | string |
None. |
|
| AppVersion | string |
None. |
|
| Build | string |
None. |
|
| PlatformId | integer |
None. |
|
| DeviceID | string |
None. |
|
| LastUpdateDate | date |
None. |
|
| SessionId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Licence": "sample string 1",
"AppVersion": "sample string 2",
"Build": "sample string 3",
"PlatformId": 4,
"DeviceID": "sample string 5",
"LastUpdateDate": "2025-12-28T18:24:50.8559311+01:00",
"SessionId": "sample string 7"
}
application/xml, text/xml
Sample:
<RequestInfoCheckFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat"> <DeviceID>sample string 5</DeviceID> <LastUpdateDate>2025-12-28T18:24:50.8559311+01:00</LastUpdateDate> <PlatformId>4</PlatformId> <SessionId>sample string 7</SessionId> <AppVersion>sample string 2</AppVersion> <Build>sample string 3</Build> <Licence>sample string 1</Licence> </RequestInfoCheckFlat>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseInfoFlat| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorNumber | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| ActionResult | boolean |
None. |
|
| ResultMessage | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorNumber": 1,
"ErrorMessage": "sample string 2",
"ActionResult": true,
"ResultMessage": "sample string 4",
"Result": {}
}
application/xml, text/xml
Sample:
<ResponseInfoFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.Flat"> <ActionResult>true</ActionResult> <ErrorMessage>sample string 2</ErrorMessage> <ErrorNumber>1</ErrorNumber> <Result /> <ResultMessage>sample string 4</ResultMessage> </ResponseInfoFlat>