POST payment/trade_pay_off_line
Request Information
URI Parameters
None.
Body Parameters
TradePayOfflineViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| amount | decimal number |
None. |
|
| note | string |
None. |
|
| attach | string |
None. |
|
| client_id | integer |
None. |
|
| app_id | integer |
None. |
|
| user_coupon_id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"amount": 1.0,
"note": "sample string 2",
"attach": "sample string 3",
"client_id": 4,
"app_id": 1,
"user_coupon_id": 1
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
DataResponseOfPayOfflineOrderViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| message | string |
None. |
|
| success | boolean |
None. |
|
| data | PayOfflineOrderViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"message": "sample string 2",
"success": true,
"data": {
"pay_offline_id": 1,
"amount": 2.0,
"note": "sample string 3"
}
}