POST api/ITTCApi/RefundOrder

Request Information

URI Parameters

None.

Body Parameters

TencentOrderEntity
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:
<TencentOrderEntity 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>
</TencentOrderEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TencentRefundOrderResponseEntity
NameDescriptionTypeAdditional information
RefundOrder

Collection of TencentRefundOrderDetailResponseEntity

None.

ReturnCode

string

None.

ReturnMsg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "RefundOrder": [
    {
      "TransNO": "sample string 1",
      "RefundOrderNO": "sample string 2",
      "OrderNO": "sample string 3",
      "OrderID": 4,
      "RefundFee": 5,
      "RefundNum": 6
    },
    {
      "TransNO": "sample string 1",
      "RefundOrderNO": "sample string 2",
      "OrderNO": "sample string 3",
      "OrderID": 4,
      "RefundFee": 5,
      "RefundNum": 6
    }
  ],
  "ReturnCode": "sample string 1",
  "ReturnMsg": "sample string 2"
}

application/xml, text/xml

Sample:
<TencentRefundOrderResponseEntity 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>
  <RefundOrder>
    <TencentRefundOrderDetailResponseEntity>
      <OrderID>4</OrderID>
      <OrderNO>sample string 3</OrderNO>
      <RefundFee>5</RefundFee>
      <RefundNum>6</RefundNum>
      <RefundOrderNO>sample string 2</RefundOrderNO>
      <TransNO>sample string 1</TransNO>
    </TencentRefundOrderDetailResponseEntity>
    <TencentRefundOrderDetailResponseEntity>
      <OrderID>4</OrderID>
      <OrderNO>sample string 3</OrderNO>
      <RefundFee>5</RefundFee>
      <RefundNum>6</RefundNum>
      <RefundOrderNO>sample string 2</RefundOrderNO>
      <TransNO>sample string 1</TransNO>
    </TencentRefundOrderDetailResponseEntity>
  </RefundOrder>
</TencentRefundOrderResponseEntity>