POST api/Query/CouponNum_Check

Request Information

URI Parameters

None.

Body Parameters

COUPONNUM_CHECK_Params
NameDescriptionTypeAdditional information
COUPONTYPE

string

None.

COUPONNO

string

None.

GIVEDATE

string

None.

CARTYPE

string

None.

DAYS

decimal number

None.

CNTS

integer

None.

AUTH

Auth_Params

None.

Request Formats

application/json, text/json

Sample:
{
  "COUPONTYPE": "sample string 1",
  "COUPONNO": "sample string 2",
  "GIVEDATE": "sample string 3",
  "CARTYPE": "sample string 4",
  "DAYS": 5.0,
  "CNTS": 6,
  "AUTH": {
    "AUTH_KEY": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<COUPONNUM_CHECK_Params xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSStoreService.Models.Params">
  <AUTH>
    <AUTH_KEY>sample string 1</AUTH_KEY>
  </AUTH>
  <CARTYPE>sample string 4</CARTYPE>
  <CNTS>6</CNTS>
  <COUPONNO>sample string 2</COUPONNO>
  <COUPONTYPE>sample string 1</COUPONTYPE>
  <DAYS>5</DAYS>
  <GIVEDATE>sample string 3</GIVEDATE>
</COUPONNUM_CHECK_Params>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultDTOOfDataSet
NameDescriptionTypeAdditional information
Result

boolean

None.

Message

string

None.

Data

DataSet

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Message": "sample string 2",
  "Data": null
}

application/xml, text/xml

Sample:
<ResultDTOOfDataSetymujubN2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSStoreService.Models.DTO">
  <Data i:nil="true" />
  <Message>sample string 2</Message>
  <Result>true</Result>
</ResultDTOOfDataSetymujubN2>