简要描述:
- 上传发票图片接口,用来校验和绑定发票,校验成功后就会自动绑定发票,并返回发票图片列表
请求域名:
- http://xx.com
请求URL:
POST/plugin.withdrawal-invoice.frontend.index.checkInvoice
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
withdraw_sn | 是 | string | 提现单号 |
url | 是 | string | 图片地址,必须要公网能访问的完整地址 |
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": {
"image_list": [
"https://dev15.yunzmall.com/static/upload/images/25/2025/06/7a17efa82f13317686b63633678120ab.png"
]
}
}