普票抬头列表
请求地址
https://api.es.xiaojukeji.com/river/Invoice/getTitleList
返回数据格式
JSON
HTTP请求方式
GET
是否需要登录
是 关于登录授权,参见 如何登录授权
访问授权限制
暂无
请求参数
名称 | 类型 | 必选 | 描述 |
client_id | string | yes | 申请应用时分配的AppKey |
access_token | string | yes | 授权后的access token |
timestamp | bigint | yes | 当前时间戳 |
company_id | string | yes | 公司编号 |
sign | string | yes | 签名 |
注意事项
暂无
请求示例
curl -X GET -H "Content-Type: application/x-www-form-urlencoded" https://api.es.xiaojukeji.com/river/Invoice/getTitleList?client_id=client_id_test&access_token=141ea31466478eab2f1c1ddcca2675b989a16552×tamp=1566764837&company_id=12345678980&sign=091cf244ad5ab16935cfe44fc698bc58
返回参数说明
返回值字段 | 字段类型 | 字段说明 |
errno | string | 0表示成功,非0表示失败 |
errmsg | string | errno=0时为常量"SUCCESS",errno!=0时为错误信息 |
data | array | 普票抬头列表 |
data元素数据格式
返回值字段 | 字段类型 | 字段说明 |
id | int | 抬头ID |
company_id | int | 企业ID |
invoice_title | string | 抬头 |
tax_registration_number | string | 纳税人识别号 |
返回示例
{
"errno":0,
"errmsg":"SUCCESS",
"data":[
{
"id":245,
"company_id":4594700483696012312,
"invoice_title":"橙子科技4",
"tax_registration_number":"xxxxxx"
}
]
}