GET api/Login?session={session}

로그인 정보를 해석하기 위한 API, 현재 로그인이 정상적인지 처리 (POS, 태블릿 등 운영자 환경)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
session

Body Parameters

None.

Response Information

Resource Description

APIResultOfString
NameDescriptionTypeAdditional information
ResultCode

ResultValue

ResultMessage

Data

Response Formats

application/json, text/json

Sample:
{
  "ResultCode": 1,
  "ResultValue": "sample string 2",
  "ResultMessage": "sample string 3",
  "Data": "sample string 4"
}

text/html

Sample:
{"ResultCode":1,"ResultValue":"sample string 2","ResultMessage":"sample string 3","Data":"sample string 4"}

application/xml, text/xml

Sample:
<APIResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WASASP">
  <Data>sample string 4</Data>
  <ResultCode>1</ResultCode>
  <ResultMessage>sample string 3</ResultMessage>
  <ResultValue>sample string 2</ResultValue>
</APIResultOfstring>