电子发票信息查询
请求地址
https://api.es.xiaojukeji.com/river/Invoice/detail
返回数据格式
JSON
请求方式
GET
是否需要登录
是 关于登录授权,参见 如何登录授权
访问授权限制
暂无
请求参数
名称 | 类型 | 必选 | 描述 |
client_id | string | yes | 申请应用时分配的AppKey |
access_token | string | yes | 授权后的access token |
timestamp | bigint | yes | 当前时间戳 |
company_id | string | yes | 公司编号 |
invoice_id | string | yes | 发票id |
sign | string | yes | 签名 |
注意事项
- 电子发票开票成功之后才可以下单
请求示例
curl -X GET -H "Content-Type: application/x-www-form-urlencoded" https://api.es.xiaojukeji.com/river/Invoice/detail?client_id=client_id_test&access_token=141ea31466478eab2f1c1ddcca2675b989a16552×tamp=1566764837&company_id=12345678980&invoice_id=erp1234354&sign=091cf244ad5ab16935cfe44fc698bc58
返回参数说明
返回值字段 | 字段类型 | 字段说明 |
errno | string | 0表示成功,非0表示失败 |
errmsg | string | errno=0时为常量"SUCCESS",errno!=0时为错误信息 |
data | object | 电子发票信息 |
data数据格式
返回值字段 | 字段类型 | 字段说明 |
invoice_id | string | 发票ID |
buyer_name | string | 购买方名称 |
buyer_taxpayer_id | string | 购买方纳税人识别号 |
buyer_address | string | 购买方地址 |
buyer_tel | string | 购买方电话 |
buyer_bank | string | 购买方开户行 |
buyer_account | string | 购买方账户 |
seller_name | string | 销售方名称 |
seller_taxpayer_id | string | 销售方纳税人识别号 |
seller_address_tel | string | 销售方地址、电话 |
seller_bankers_account | string | 销售方开户行及账号 |
apply_time | string | 发票申请时间 |
apply_amount | float | 开票金额 |
apply_status | string | 开票状态 |
blue_list | array | 有效票集合 |
red_list | array | 冲红票集合 |
blue_list和red_list元素格式
返回值字段 | 字段类型 | 字段说明 |
invoice_code | string | 发票代码 |
invoice_number | string | 发票号码 |
invoice_date | string | 开票日期 |
check_code | string | 校验码 |
goods_services | string | 货物或应税劳务、服务名称 |
goods_services_tax_rate | float | 税率 |
goods_services_tax_amount | float | 税额 |
invoice_amount | float | 发票金额 |
invoice_url | string | 发票下载链接 |
返回示例
{
"errno":0,
"errmsg":"SUCCESS",
"data":{
"invoice_id":"erp0dda2fd8af68",
"buyer_name":"xxxxxxxxxxxxxxxx",
"buyer_taxpayer_id":"9111010806792745595",
"buyer_address":"",
"buyer_tel":"",
"buyer_bank":"",
"buyer_account":"",
"seller_name":"xxxxxxxxxxx",
"seller_taxpayer_id":"9112011243359833307",
"seller_address_tel":"招商银行股份有限公司天津自由贸易试验区分行122905939910401",
"seller_bankers_account":"天津经济技术开发区南港工业区综合服务区办公楼C座103室12单元022-59002850",
"apply_time":"2021-05-07 18:57:56",
"apply_amount":15169.19,
"apply_status":"已开票",
"blue_list":[
{
"invoice_code":"012002000511",
"invoice_number":"16391820",
"invoice_date":"2021-05-07 18:56:35",
"goods_services":"客运服务费",
"goods_services_tax_rate":0.03,
"goods_services_tax_amount":441.83,
"invoice_amount":15169.19,
"check_code":"13211142913194759916",
"invoice_url":"http://img-hxy02.didistatic.com/static/einvoice/20210507/a557f897aa274e6c96ce6a2999ef5y19pdf_16jesXMwiqmL4i5avge"
}
],
"red_list":[
]
}
}