简要描述:

  • 上传发票图片接口,用来校验和绑定发票,校验成功后就会自动绑定发票,并返回发票图片列表

请求域名:

  • http://xx.com

请求URL:

POST/plugin.withdrawal-invoice.frontend.index.deleteImage

参数:

参数名 是否必须 类型 说明
withdraw_sn string 提现单号
urls array 图片地址数组,必须要公网能访问的完整地址
withdraw_type int 1供应商提现,不传或其他为默认提现

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "ok",
    "data": {
        "image_list": ["https://release.yunzmall.com/storage/app/public/xz-api/97d7336cbb4a36066681b045a2290af4.png"]
    }
}

返回参数说明:

参数名 类型 说明
image_list array 图片列表

错误时返回:

{
    "result": 0,
    "msg": "该图片未识别到发票号码",
    "data": []
}