# 根据运单号获取真实手机号

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/logistics/phonenumber/get?access_token=ACCESS_TOKEN

通过运单号获取真实的手机号(接口调用有quota限制,按需获取)

# 请求参数示例

{
    "waybill_id": "xxxxxx",
    "private_phone":"xxxxxx"
}

# 回包示例

{
    "errcode": 0,
    "errmsg": "ok",
    "phone":"xxxxx" 
}

# 请求参数说明

参数 类型 是否必填 说明
waybill_id string 运单号
private_phone string 虚拟号

# 回包参数说明

参数 类型 说明
errcode number 错误码
errmsg string 错误信息
phone string 真实手机号

# 错误码

错误码 错误信息
公共错误码 点击查看
10025000 订单不存在
10025001 订单状态错误
40097 参数错误