# 通用接口说明
# URL参数
# appid
URL需要在参数部分添加appid,appid值详见开通邮件内的appid值。
样例如下:
http://{HOST}:{PORT}/output-tax/api/invoice-his/print?appid=HelloTax
参数说明如下:
参数 | 类型 | 是否必填 | 描述 |
---|---|---|---|
appid | String | 是 | 签名appid值 |
# 请求头
# sign
所有OpenAPI请求头需要包含sign值,具体参数如下:
参数 | 类型 | 是否必填 | 描述 |
---|---|---|---|
sign | String | 是 | 请求签名信息 |
# Content-Type
大部分请求的Content-Type为application/json
,请在请求时确认类型一致。
Content-Type: application/json
TIP
开票申请接口的Content-Type为application/x-www-form-urlencoded
,请一定保证正确
# 返回结果
标准返回结果为json,格式如下
{
"code" : "0000",
"msg" : "操作成功",
"datas" : null
}
# 返回结果说明
参数 | 类型 | 描述 | 说明 |
---|---|---|---|
code | String | 状态码 | |
msg | String | 信息说明 | |
datas | Object | 返回对象信息 |