订单服务接口
1、分期支付订单列表
接口说明
接口说明 |
接口说明 |
请求域名 |
http://api.yoho.cn/ |
接口名 |
app.SpaceOrders.getInstallment |
接口说明 |
获取用户分期订单列表 |
http请求方式 |
GET/POST |
请求参数
名称 |
类型 |
是否必须 |
示例值 |
默认值 |
描述 |
method |
string |
是 |
app.SpaceOrders.getInstallment |
|
|
uid |
int |
是 |
5772257 |
|
|
type |
int |
是 |
1 |
|
订单类型 1:全部订单,2:还款中,3:已还清
|
page |
int |
否 |
1 |
1 |
页数 |
limit |
int |
否 |
10 |
10 |
每页大小 |
client_type |
String |
是 |
|
|
客户端类型 |
正常返回结果
{
"code": 200,
"data": {
"order_list": [
{
"order_code": "1519273880",
"uid": "5772257",
// 创建时间
"create_time": "2016/08/01",
// 订单金额
"amount": "¥100.00",
// 购买商品数量
"buy_total": 1,
//还款进度状态
"install_status":"已还清", // 类别如: 还款中0/1,已还清,订单已取消,已退款399.00
// 购买商品
"order_goods": [
{
// 购买商品数量
"buy_number": 1,
// 商品默认图片
"goods_image": "http://img10.static.yhbimg.com/goodsimg/2014/06/19/02/0118c2721e4f2219f69539dd389f4bacac.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
// 商品价格
"goods_price": "¥1.00",
// 商品总价格
"goods_amount": "¥1.00",
"product_id": 84230,
"product_name": "004 满版龙纹迷彩七分休闲裤",
"cn_alphabet": "004QiFenBuKu004PA095",
"product_skn": 51055461
}
]
}
],
"page": 1,
"page_total": 27,
"total": 265
},
"message": "ok"
}
2、订单详情
接口说明
接口说明 |
接口说明 |
请求域名 |
http://api.yoho.cn/ |
接口名 |
app.SpaceOrders.installDetail |
接口说明 |
订单详情 |
http请求方式 |
GET/POST |
请求参数
名称 |
类型 |
是否必须 |
示例值 |
默认值 |
描述 |
method |
string |
是 |
app.SpaceOrders.installDetail |
|
|
uid |
int |
是 |
5772257 |
|
|
order_code |
long |
是 |
1519816409 |
|
订单号 |
正常返回结果
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"amount": "¥690.00",
"order_code": "1519816409",
"create_time": "2016-08-01",
//分期服务费
"avg_fee_amt":"¥0.00/期",
//分期应还
"avg_principal_amt":"¥599.00/期",
//总计应还
"total_amt":"¥2120.00",
"order_goods": [
{
"buy_number": "2",
"goods_amount": "¥690.00",
"goods_image": "http://img13.static.yhbimg.com/goodsimg/2014/11/27/09/0222a041d7f9c17479a684e9e7e4efeac2.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_price": "¥345.00",
"product_name": "5 PREVIEW 人物趣味印花圆领T恤衫 (通用款)",
}
],
// 还款明细
"package_list": [
{
// 本期需要还款金额
"curr_amt": "¥599.00",
// 本金
"curr_principal_amt": "¥590.00",
// 服务费
"curr_fee_amt": "¥5.00",
// 逾期服务费
"curr_dealy_fee_amt": "¥4.00",
"desc":"已还款" // 已还款,已退款,(时间未到返回时间:)2016-08-26,逾期2天
"curr_date":"【1/3期】",
"sort_id":"1" //1,2,3,4,5
}
]
},
"md5": "93833c6c94b5da93af49f4591a166147",
"message": "OK"
}