...
|
...
|
@@ -306,6 +306,7 @@ code为200即为成功,否则是失败。 |
|
|
|isMeetCondition|string|Y/N||N|是否满足分期支付条件,APP可根据该字段决定是否灰化分期渠道|
|
|
|
|conditionErrorCode|int|{0,1,2}||0|不满足分期条件的原因:1、不是所有的商品都是分期商品;2、订单金额大于可用额度
|
|
|
|description|String||||描述,如不满足分期条件的原因|
|
|
|
|instalmentDetail|JSON格式||||分期详情|
|
|
|
|
|
|
|
|
|
### 响应
|
...
|
...
|
@@ -318,9 +319,46 @@ code为200即为成功,否则是失败。 |
|
|
"code":200,
|
|
|
"data":{
|
|
|
"isOpen":"Y",
|
|
|
"isMeetCondition":"N",
|
|
|
"conditionErrorCode":2,
|
|
|
"description":"订单金额大于可用额度"
|
|
|
"isMeetCondition":"Y",
|
|
|
"conditionErrorCode":0,
|
|
|
"description":"",
|
|
|
"instalmentDetail":[
|
|
|
{
|
|
|
"is_default":"Y",
|
|
|
"is_support":"Y",
|
|
|
"plan_amount_per_name":"不分期($130.00)",
|
|
|
"plan_int_amount_per_name":"无手续费",
|
|
|
"term":1
|
|
|
},
|
|
|
{
|
|
|
"is_default":"N",
|
|
|
"is_support":"Y",
|
|
|
"plan_amount_per_name":"分3期($100.00*3)",
|
|
|
"plan_int_amount_per_name":"手续费$10/期",
|
|
|
"term":3
|
|
|
},
|
|
|
{
|
|
|
"is_default":"N",
|
|
|
"is_support":"Y",
|
|
|
"plan_amount_per_name":"分6期($100.00*3)",
|
|
|
"plan_int_amount_per_name":"手续费$10/期",
|
|
|
"term":6
|
|
|
},
|
|
|
{
|
|
|
"is_default":"N",
|
|
|
"is_support":"Y",
|
|
|
"plan_amount_per_name":"分9期($100.00*3)",
|
|
|
"plan_int_amount_per_name":"手续费$10/期",
|
|
|
"term":9
|
|
|
},
|
|
|
{
|
|
|
"is_default":"N",
|
|
|
"is_support":"Y",
|
|
|
"plan_amount_per_name":"分12期($100.00*3)",
|
|
|
"plan_int_amount_per_name":"手续费$10/期",
|
|
|
"term":12
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
"md5":"c1d725306fb09dcbf504776d276521cb",
|
|
|
"message":"ok"
|
...
|
...
|
|