POST api/Query/Rcvno_Check
Request Information
URI Parameters
None.
Body Parameters
RCVNO_CHECK_Params| Name | Description | Type | Additional information |
|---|---|---|---|
| RCVNO | string |
None. |
|
| ORDNO | string |
None. |
|
| CNTRNO | string |
None. |
|
| AUTH | Auth_Params |
None. |
Request Formats
application/json, text/json
Sample:
{
"RCVNO": "sample string 1",
"ORDNO": "sample string 2",
"CNTRNO": "sample string 3",
"AUTH": {
"AUTH_KEY": "sample string 1"
}
}
application/xml, text/xml
Sample:
<RCVNO_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>
<CNTRNO>sample string 3</CNTRNO>
<ORDNO>sample string 2</ORDNO>
<RCVNO>sample string 1</RCVNO>
</RCVNO_CHECK_Params>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultDTOOfDataSet| Name | Description | Type | Additional 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>