POST api/QuickOrder/QuickOrderPayShow
快速付款-取得付款方式
Request Information
URI Parameters
None.
Body Parameters
QuickOrderPayShow_Input| Name | Description | Type | Additional information |
|---|---|---|---|
| cardNumber |
信用卡號 |
string |
None. |
| CardID |
信用卡ID |
string |
None. |
| payAmount |
付款金額 |
decimal number |
Required |
| serviceNumber |
服務商品編號 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"cardNumber": "sample string 1",
"CardID": "sample string 2",
"payAmount": 3.0,
"serviceNumber": "sample string 4"
}
text/html
Sample:
{"cardNumber":"sample string 1","CardID":"sample string 2","payAmount":3.0,"serviceNumber":"sample string 4"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
快速付款-取得付款方式
QuickOrderPayShow_Output| Name | Description | Type | Additional information |
|---|---|---|---|
| ticketVerified |
驗證是否通過 |
boolean |
None. |
| installments |
付款方式 |
Collection of CarModel_installments |
None. |
Response Formats
application/json, text/json
Sample:
{
"ticketVerified": true,
"installments": [
{
"name": "sample string 1",
"periods": 2,
"interestRate": 1.0,
"periodPrice": 3.0,
"firstPeriodPrice": 4.0,
"banks": [
"sample string 1",
"sample string 2"
],
"toalPrice": 5.0,
"installmentNo": "sample string 6",
"IsSelect": true
},
{
"name": "sample string 1",
"periods": 2,
"interestRate": 1.0,
"periodPrice": 3.0,
"firstPeriodPrice": 4.0,
"banks": [
"sample string 1",
"sample string 2"
],
"toalPrice": 5.0,
"installmentNo": "sample string 6",
"IsSelect": true
}
]
}
text/html
Sample:
{"ticketVerified":true,"installments":[{"name":"sample string 1","periods":2,"interestRate":1.0,"periodPrice":3.0,"firstPeriodPrice":4.0,"banks":["sample string 1","sample string 2"],"toalPrice":5.0,"installmentNo":"sample string 6","IsSelect":true},{"name":"sample string 1","periods":2,"interestRate":1.0,"periodPrice":3.0,"firstPeriodPrice":4.0,"banks":["sample string 1","sample string 2"],"toalPrice":5.0,"installmentNo":"sample string 6","IsSelect":true}]}