POST {version}/User/CreateRefundOrder

用户发起退费填写信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

UserRefundDto
NameDescriptionTypeAdditional information
RealName

用户姓名

string

None.

Identity

身份证号

string

None.

OrderNo

订单编码

string

None.

ChannelNo

交易单号

string

None.

QQ

用户QQ号

string

None.

Type

0-未知 1-退费 2-换课

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RealName": "sample string 1",
  "Identity": "sample string 2",
  "OrderNo": "sample string 3",
  "ChannelNo": "sample string 4",
  "QQ": "sample string 5",
  "Type": 6
}

application/xml, text/xml

Sample:
<UserRefundDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eshikao.Models.PC">
  <ChannelNo>sample string 4</ChannelNo>
  <Identity>sample string 2</Identity>
  <OrderNo>sample string 3</OrderNo>
  <QQ>sample string 5</QQ>
  <RealName>sample string 1</RealName>
  <Type>6</Type>
</UserRefundDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserRefundDto'.

Response Information

Resource Description

None.