查询发票申请是否审批通过开票、寄出
请求地址: /v2/common/queryInvoiceStatus
服务协议: HTTP/POST
Content-Type: application/x-www-form-urlencoded
请求参数:
参数名 | 类型 | 必选 | 描述 |
---|---|---|---|
client_id | string | Y | 申请的client_id |
timestamp | long | Y | 时间戳 |
sign | string | Y | 参数签名 |
string | N | 发票id(已经废弃) | |
invoice_no | string | Y | 发票No |
响应data参数:
参数名称 | 类型 | 必有 | 说明 |
---|---|---|---|
int | Y | 发票ID | |
invoiceNo | string | Y | 开票成功时返回,发票No |
amount | int | Y | 发票金额,单位分 |
invoiceTime | string | Y | 开票时间,时间戳格式 |
sendTime | string | Y | 邮寄时间,时间戳格式 |
expressCompany | string | Y | 快递公司 |
receiveName | string | Y | 收件人姓名 |
receiveMobile | string | Y | 收件人手机号 |
receiveAddress | string | Y | 收件人地址,仅纸质发票返回 |
receiveEmail | string | Y | 收件人邮箱,仅电子发票返回 |
applicationTime | string | Y | 发票申请时间,时间戳格式 |
invoiceTitle | string | Y | 发票抬头 |
taxNumber | string | Y | 税号 |
invoiceType | string | Y | 发票类型(0 电子票、1纸质票) |
orderNo | string | Y | 开票订单号 |
downloadUrl | string | Y | 电子发票下载地址,仅电子发票返回 |
makeOutStatus | string | Y | 是否开票,INVOICE_MAKE_OUT_NO 未开票、INVOICE_MAKE_OUT_YES 已开票、INVOICE_MAKE_INVALID 发票作废、INVOICE_MAKE_OUT_INVALID 开票失败 |
expressStatus | string | Y | 是否开票,SENT_OUT_NO 未寄出、SENT_OUT_YES 已寄出 |
结果示例:
{
"code": 200,
"data": {
"amount": 1563,
"orderNo": 6962230448002000,
"invoiceTime": 1591631737000,
"makeOutStatus": "INVOICE_MAKE_OUT_YES",
"downloadUrl": "http://fp.bwjf.cn/downInvoice/026/q2412412",
"taxNumber": "900000609134343",
"receiveEmail": "s222rra.j.yin@qq.com",
"sendTime": 1591631671000,
"costCity": "021",
"receiveName": "阿里",
"applicationTime": 1591631665000,
"invoiceType": 2,
"invoiceId": 4808807,
"invoiceNo": "20200354250083783480212",
"invoiceTitle": "普华",
"expressStatus": "SENT_OUT_YES",
"receiveMobile": "123456"
},
"success": true
}