POST api/ITTCApi/GetOrderStatus

Request Information

URI Parameters

None.

Body Parameters

TencentGetOrderStatusEntity
NameDescriptionTypeAdditional information
Order

string

None.

ParkCode

string

None.

nonce_str

string

None.

appid

string

None.

sign

string

None.

time_stamp

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Order": "sample string 1",
  "ParkCode": "sample string 2",
  "nonce_str": "sample string 3",
  "appid": "sample string 4",
  "sign": "sample string 5",
  "time_stamp": 6
}

application/xml, text/xml

Sample:
<TencentGetOrderStatusEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Easyway.ITTC.Common.ParamEntity.ITTCAPI.Request.Tencent">
  <appid>sample string 4</appid>
  <nonce_str>sample string 3</nonce_str>
  <sign>sample string 5</sign>
  <time_stamp>6</time_stamp>
  <Order>sample string 1</Order>
  <ParkCode>sample string 2</ParkCode>
</TencentGetOrderStatusEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TencentGetOrderStatusResponseEntity
NameDescriptionTypeAdditional information
Order

Collection of TencentGetOrderStatusDetailEntity

None.

ReturnCode

string

None.

ReturnMsg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Order": [
    {
      "OrderNO": "sample string 1",
      "OrderID": 2,
      "UnCheckCount": 3,
      "CheckedCount": 4,
      "RefundCount": 5
    },
    {
      "OrderNO": "sample string 1",
      "OrderID": 2,
      "UnCheckCount": 3,
      "CheckedCount": 4,
      "RefundCount": 5
    }
  ],
  "ReturnCode": "sample string 1",
  "ReturnMsg": "sample string 2"
}

application/xml, text/xml

Sample:
<TencentGetOrderStatusResponseEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Easyway.ITTC.Common.ParamEntity.ITTCAPI.Response.Tencent">
  <ReturnCode>sample string 1</ReturnCode>
  <ReturnMsg>sample string 2</ReturnMsg>
  <Order>
    <TencentGetOrderStatusDetailEntity>
      <CheckedCount>4</CheckedCount>
      <OrderID>2</OrderID>
      <OrderNO>sample string 1</OrderNO>
      <RefundCount>5</RefundCount>
      <UnCheckCount>3</UnCheckCount>
    </TencentGetOrderStatusDetailEntity>
    <TencentGetOrderStatusDetailEntity>
      <CheckedCount>4</CheckedCount>
      <OrderID>2</OrderID>
      <OrderNO>sample string 1</OrderNO>
      <RefundCount>5</RefundCount>
      <UnCheckCount>3</UnCheckCount>
    </TencentGetOrderStatusDetailEntity>
  </Order>
</TencentGetOrderStatusResponseEntity>