POST api/DEW/CheckLogout

Request Information

URI Parameters

None.

Body Parameters

CheckLogoutRequest
NameDescriptionTypeAdditional information
UserName

string

None.

IsPreLogin

boolean

None.

ApplicationId

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "IsPreLogin": true,
  "ApplicationId": "sample string 2",
  "SessionNum": 3,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 4",
  "StagesURL": "sample string 5"
}

application/xml, text/xml

Sample:
<CheckLogoutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 5</StagesURL>
  <ApplicationCode>sample string 4</ApplicationCode>
  <SessionNum>3</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <ApplicationId>sample string 2</ApplicationId>
  <IsPreLogin>true</IsPreLogin>
  <UserName>sample string 1</UserName>
</CheckLogoutRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CheckLogoutResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

CheckLogOut

Collection of pCheckLogoutResult

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2",
  "CheckLogOut": [
    {
      "Username": "sample string 1",
      "Date": "2024-05-01T09:13:49.7001372-04:00",
      "SessionNum": 1
    },
    {
      "Username": "sample string 1",
      "Date": "2024-05-01T09:13:49.7001372-04:00",
      "SessionNum": 1
    }
  ]
}

application/xml, text/xml

Sample:
<CheckLogoutResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <CheckLogOut xmlns:d2p1="http://schemas.datacontract.org/2004/07/RapidAPI">
    <d2p1:pCheckLogoutResult>
      <d2p1:Date>2024-05-01T09:13:49.7001372-04:00</d2p1:Date>
      <d2p1:SessionNum>1</d2p1:SessionNum>
      <d2p1:Username>sample string 1</d2p1:Username>
    </d2p1:pCheckLogoutResult>
    <d2p1:pCheckLogoutResult>
      <d2p1:Date>2024-05-01T09:13:49.7001372-04:00</d2p1:Date>
      <d2p1:SessionNum>1</d2p1:SessionNum>
      <d2p1:Username>sample string 1</d2p1:Username>
    </d2p1:pCheckLogoutResult>
  </CheckLogOut>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Success>true</Success>
</CheckLogoutResult>