1. 订单
悦居帮手项目
  • 注册登录
    • 测试(不需要token
      GET
    • 测试(需token
      GET
    • 发送验证码
      POST
    • 注册
      POST
    • 登录
      POST
    • 重置密码
      POST
    • 修改手机号时发送验证码到新手机号
      POST
    • 修改手机号
      POST
  • 用户信息
    • 实时上传骑手位置
    • 上传技能证书
      POST
    • 上传或更新实名认证信息
      POST
    • 上传或更新头像
      POST
    • 获取用户详细信息
      GET
    • 提交用户反馈
      POST
  • 人脸识别验证
    • 动态人脸识别
    • 动态人脸识别回调(腾讯云自动回调)
    • 查询动态人脸识别结果
  • 订单
    • 实时获取可接任务
    • 实时获取申诉信息
    • 实时获取订单取消消息
    • 获取可接任务
      GET
    • 骑手抢单
      POST
    • 状态推进
      POST
    • 骑手投诉订单
      POST
    • 骑手取消订单
      POST
    • 获取已完成订单
      GET
    • 获取进行中的订单
      GET
    • 获取取消的订单
      GET
    • 骑手获取所有申诉记录
      GET
    • 骑手发起申诉
      POST
    • 获取订单的下一步验证信息
      GET
  • 常量配置
    • 获取技能种类列表
  1. 订单

获取已完成订单

开发中
GET
/api/order/completed

请求参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/api/order/completed' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMTEiLCJpYXQiOjE3NDk2MTQzMTIsImV4cCI6MTc1MjIwNjMxMn0.6ugWdzaCCg3ZYzILG-f5hIORWkn6R-sSna3S-u5fIHk'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "code": 0,
    "message": "success",
    "data": [
        {
            "orderNo": "1935603786191867904",
            "serviceType": "上门服务",
            "price": 500.00,
            "status": "Bidding",
            "payStatus": "paid",
            "appointmentTime": "2025-06-19T15:41:19",
            "skillRequirements": null,
            "annexData": "[\"http://static.qlzc.net/1895408479469047808/hides/898321dc-7f82-4380-8747-635685380716.jpg\"]",
            "isLoop": "1",
            "orderDetails": [
                {
                    "latitude": 30.676761,
                    "longitude": 103.887579,
                    "address": "四川省成都市温江区,香瑞湖花园8栋2单元1703",
                    "deliveryType": "预约",
                    "deliveryTime": "2025-06-19T15:41:19",
                    "extraData": "{\"city\": \"成都市\", \"notes\": \"测试\", \"district\": \"温江区\", \"province\": \"四川省\", \"totalCycles\": 1, \"isLongTermTask\": false, \"remainingCycles\": 1, \"currentCycleStartTime\": 1750318878606}"
                },
                {
                    "latitude": 30.676761,
                    "longitude": 103.887579,
                    "address": "四川省成都市温江区,香瑞湖花园8栋2单元1703",
                    "deliveryType": "预约",
                    "deliveryTime": "2025-06-19T16:31:19",
                    "extraData": "{\"city\": \"成都市\", \"notes\": \"测试\", \"district\": \"温江区\", \"province\": \"四川省\", \"totalCycles\": 1, \"isLongTermTask\": false, \"remainingCycles\": 1, \"currentCycleStartTime\": 1750321878606}"
                }
            ]
        },
        {
            "orderNo": "1935604939948429312",
            "serviceType": "跑腿",
            "price": 500.00,
            "status": "Bidding",
            "payStatus": "paid",
            "appointmentTime": "2025-06-19T15:45:54",
            "skillRequirements": null,
            "annexData": "[\"http://static.qlzc.net/1895408479469047808/hides/898321dc-7f82-4380-8747-635685380716.jpg\"]",
            "isLoop": "1",
            "orderDetails": [
                {
                    "latitude": 30.676761,
                    "longitude": 103.887579,
                    "address": "四川省成都市温江区,香瑞湖花园8栋2单元1703",
                    "deliveryType": "预约",
                    "deliveryTime": "2025-06-19T15:45:54",
                    "extraData": "{\"city\": \"成都市\", \"notes\": \"测试\", \"district\": \"温江区\", \"province\": \"四川省\", \"totalCycles\": 1, \"isLongTermTask\": false, \"remainingCycles\": 1, \"currentCycleStartTime\": 1750319153586}"
                },
                {
                    "latitude": 30.676761,
                    "longitude": 103.887579,
                    "address": "四川省成都市温江区,香瑞湖花园8栋2单元1703",
                    "deliveryType": "预约",
                    "deliveryTime": "2025-06-19T16:35:54",
                    "extraData": "{\"city\": \"成都市\", \"notes\": \"测试\", \"district\": \"温江区\", \"province\": \"四川省\", \"totalCycles\": 1, \"isLongTermTask\": false, \"remainingCycles\": 1, \"currentCycleStartTime\": 1750322153586}"
                }
            ]
        }
    ]
}
修改于 2025-06-12 07:54:48
上一页
骑手取消订单
下一页
获取进行中的订单
Built with