POST api/pay/getzfbpayparam
Request Information
URI Parameters
None.
Body Parameters
ZFBPayInfoDto| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
None. |
|
| cJE | decimal number |
None. |
|
| sMZH | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"cJE": 2.0,
"sMZH": "sample string 3"
}
application/xml, text/xml
Sample:
<ZFBPayInfoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/wechatpay.Dto"> <cJE>2</cJE> <sMZH>sample string 3</sMZH> <userId>sample string 1</userId> </ZFBPayInfoDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AlipayTradeCreateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| OutTradeNo | string |
None. |
|
| TradeNo | string |
None. |
|
| Code | string |
None. |
|
| Msg | string |
None. |
|
| SubCode | string |
None. |
|
| SubMsg | string |
None. |
|
| Body | string |
None. |
|
| IsError | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"OutTradeNo": "sample string 1",
"TradeNo": "sample string 2",
"Code": "sample string 3",
"Msg": "sample string 4",
"SubCode": "sample string 5",
"SubMsg": "sample string 6",
"Body": "sample string 7",
"IsError": true
}
application/xml, text/xml
Sample:
<AlipayTradeCreateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aop.Api.Response"> <body xmlns="http://schemas.datacontract.org/2004/07/Aop.Api">sample string 7</body> <code xmlns="http://schemas.datacontract.org/2004/07/Aop.Api">sample string 3</code> <msg xmlns="http://schemas.datacontract.org/2004/07/Aop.Api">sample string 4</msg> <subCode xmlns="http://schemas.datacontract.org/2004/07/Aop.Api">sample string 5</subCode> <subMsg xmlns="http://schemas.datacontract.org/2004/07/Aop.Api">sample string 6</subMsg> <OutTradeNo>sample string 1</OutTradeNo> <TradeNo>sample string 2</TradeNo> </AlipayTradeCreateResponse>