- 整体介绍
- 对接约定
- 授权
- 开票
- 产品介绍
- 开发指南
- 税控&数电同步开票
- 业务场景下接口调用顺序
- 1.01.读取税盘信息(czlx-7)
- 1.02 .读取票种信息(czlx-30)
- 1.03.发票开具(czlx-3)
- 1.04.发票作废(czlx-6)
- 1.05.发票查询(czlx-5)
- 1.06.发票打印(czlx-4)
- 1.07.专用发票申请红字信息表(czlx-20)
- 1.08.查询专用发票申请红字信息表(czlx-18)
- 1.09.批量打印(czlx-32)
- 1.11.机动车销售统一发票开具(czlx-40)
- 1.12.机动车销售统一发票查询(czlx-41)
- 1.13.机动车销售统一发票红冲(czlx-42)
- 1.15.核定票种查询(czlx-51)
- 1.21.二手车-发票开具(czlx-43)
- 1.22.二手车-发票查询(czlx-44)
- 1.23.二手车-发票红冲(czlx-45)
- 1.30 .查询授信额度接口(czlx-122)
- 2.01.电子发票开具(czlx-110) ,【注】开数电票请对接:1.03.发票开具(czlx-3)
- 2.02.电子发票信息查询(czlx-113)
- 2.03.电子发票红冲 (只支持全额红冲)(czlx-114)
- 2.04.刷新PDF(czlx-115)
- 2.05.查询电子发票余量(czlx-116)
- 3.01.查询税收分类编码信息(czlx-504)
- 3.03.获取打印机列表(czlx-901)
- 数电异步开票
- 托管电票(开票)
- 扫码开票
- 企业级-发票云销项查询
- 收票
- 查验识别
- 报销
- 影像
- 档案
3、发票不抵扣勾选
测试环境(除税控、数电和扫码开票外的接口)
测试环境(除税控、数电和扫码开票外的接口)
POST
/
请求参数
Query 参数
access_token
string
必需
reqid
string
必需
taxNo
string
授权对应的企业税号
name
string
可选
Body 参数application/json
account
string
可选
taxNo
string
企业税号
authenticateFlag
number
勾选标志
request_path
string
必需
invoices
array [object {11}]
发票数组
notDeductibleType
string
不抵扣原因
salerName
string
发票销方名称
salerTaxNo
string
发票销方税号
invoiceType
number
发票类型
invoiceCode
string
发票代码
etaxInvoiceNo
string
纸质数电票号码
invoiceNo
string
发票号码
invoiceDate
string
开票日期
invoiceAmount
string
不含税金额
effectiveTaxAmount
string
有效税额
totalTaxAmount
string
总税额
示例
{
"account": "string",
"taxNo": "string",
"authenticateFlag": 0,
"request_path": "string",
"invoices": [
{
"notDeductibleType": "string",
"salerName": "string",
"salerTaxNo": "string",
"invoiceType": 0,
"invoiceCode": "string",
"etaxInvoiceNo": "string",
"invoiceNo": "string",
"invoiceDate": "string",
"invoiceAmount": "string",
"effectiveTaxAmount": "string",
"totalTaxAmount": "string"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-dev.piaozone.com/test/?access_token=&reqid=&taxNo=' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
traceId
string
必需
errcode
string
必需
description
string
必需
data
object
必需
taxPeriod
string
勾选的税期
success
array [object {3}]
必需
fail
array [object {3}]
必需
示例
{
"traceId": "string",
"errcode": "string",
"description": "string",
"data": {
"taxPeriod": "string",
"success": [
{
"invoiceCode": "string",
"invoiceNo": "string",
"invoiceDate": "string"
}
],
"fail": [
{
"invoiceCode": "string",
"invoiceNo": "string",
"invoiceDate": "string"
}
]
}
}
修改于 2024-01-26 07:58:55