ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 接口名称 `Order/myOrderList` ### 接口描述 我的订单列表,用户糖果C端用户查看自己的订单列表 ### 演示地址 `http://URL/Order/myOrderList` ### 输入参数 ~~~ (string) oauth_token (必填) (string) oauth_token_secret (必填) (int) status 订单状态 (选填,默认所有状态) ( -1取消订单; 1:下单成功 ; 2:支付成功; 3好评成功 ; 4:申请退款中; 5:退款成功; 7:支付成功; ) (int) source_id,最后一条数据的资源id (int) count,分页显示时,指定每页显示条数(默认20) ~~~ ### 输出结果 成功 ~~~ { "status": 1, "list": [ { "order_id": "7", "order_no": "1506122679749", "title": "服务标题", "wedding_time": "2015-07-13", "goods_num": "2", "order_price": 9899, "type": "1", "status": "1", "logo": "http://www.candy.com/apps/microshop/_static/images/servicebg.png", "goods_id": "74", "uid": "1", "sid": "1" }, { "order_id": "1", "order_no": "1506123831648", "title": "服务标题", "wedding_time": "2015-07-13", "goods_num": "2", "order_price": 9899, "type": "1", "status": "-1", "logo": "http://www.candy.com/apps/microshop/_static/images/servicebg.png", "goods_id": "74", "uid": "1", "sid": "1" } ] } 失败 { "status": 0, "msg": "请先登录" } ~~~ ### 其他说明 ~~~ order_id 订单id/资源id order_no 订单号; title 标题 wedding_time 婚礼时间/服务时间 goods_num购买服务数量 order_price 订单价格 status 订单状态 logo 服务logo图片 goods_id服务id uid 买家id sid 卖家id ~~~