查询用户已拉黑的司机列表

该接口会返回多个司机列表

请求地址: v2/common/queryDriverBlackList

服务协议: HTTP/GET

请求参数:

参数名称 类型 必选 说明
client_id string Y 申请时的client_id
timestamp long Y 时间戳
sign string Y 签名
extUserId String Y 外部用户id

响应data参数:

参数名称 类型 必有 说明
driverNo Long Y 司机编号
driverName String Y 司机姓名
driverPhotoUrl String Y 司机头像地址
blackTime Long Y 拉黑时间

结果示例:

{
    "code": 200,
    "success": true,
    "data":[
        {
        "blackTime": 1645437011000,
        "driverPhotoUrl": "http://ccimgs224.oss.aliyuncs.com/null",
        "driverName": "噜师傅",
        "driverNo": 5576239280
        }
    ]
}