首图支付网关
  1. 读者发票抬头管理
首图支付网关
  • 对外提供支付相关接口
    • POS机扫码支付后通知接口
      POST
    • 根据工作台编码查询商户号接口
      POST
    • 根据馆藏地编码查询商户号接口
      POST
    • OpenAPI-支付统一下单接口(测试)
      POST
    • OpenAPI-查询支付订单接口(测试)
      POST
    • OpenAPI-支付统一下单接口(正式)
      POST
    • 支付统一下单接口
      POST
    • 查询支付订单接口
      POST
    • 支付记录分页列表查询接口
      POST
    • 支付通知回调
      POST
  • 对外提供退款相关接口
    • OpenAPI-退款接口(测试)
      POST
    • OpenAPI-查询退款订单接口(测试)
      POST
    • 退款接口
      POST
    • 查询退款订单接口
      POST
    • 退款记录分页查询接口
      POST
    • 退款通知回调
      POST
  • 对外提供发票相关接口
    • 读者发票抬头管理
      • 增加
        POST
      • 根据id删除
        POST
      • 修改
        POST
      • 查询读者的发票抬头
        POST
    • 开票相关接口
      • 申请开票接口
      • 查询开票状态
      • 再次发送电子发票到邮箱
  1. 读者发票抬头管理

修改

测试中
POST
/jiafulai/paymentgateway/api/invoicetitle/edit
读者发票抬头管理

请求参数

Body 参数application/json
reqTime
string 
时间戳
必需
时间戳
sign
string 
签名
必需
签名
appId
string 
应用ID
必需
应用ID
tenantId
string 
租客Id
必需
租客Id
id
string 
主键Id
可选
主键Id
readerCardId
string 
读者证卡号
必需
读者证卡号
idNumber
string 
读者身份凭证号
必需
读者身份凭证号
invoiceTitle
string 
发票抬头
必需
发票抬头
taxNo
string 
税号
必需
税号
address
string 
单位地址
可选
单位地址
bank
string 
开户银行
可选
开户银行
bankAccount
string 
银行账号
可选
银行账号
defaultFlag
string 
是否默认发票抬头
必需
是否默认发票抬头 true是;false否
phone
string 
电话号码
可选
电话号码
示例
{
    "reqTime": "string",
    "sign": "string",
    "appId": "string",
    "tenantId": "string",
    "id": "string",
    "readerCardId": "string",
    "idNumber": "string",
    "invoiceTitle": "string",
    "taxNo": "string",
    "address": "string",
    "bank": "string",
    "bankAccount": "string",
    "defaultFlag": "string",
    "phone": "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 '/jiafulai/paymentgateway/api/invoicetitle/edit' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reqTime": "string",
    "sign": "string",
    "appId": "string",
    "tenantId": "string",
    "id": "string",
    "readerCardId": "string",
    "idNumber": "string",
    "invoiceTitle": "string",
    "taxNo": "string",
    "address": "string",
    "bank": "string",
    "bankAccount": "string",
    "defaultFlag": "string",
    "phone": "string"
}'

返回响应

🟢200成功
*/*
OK
Body
code
string 
可选
data
object 
可选
msg
string 
可选
示例
{
    "code": "string",
    "data": {},
    "msg": "string"
}
🟢201成功
🟠401没有权限
🟠403禁止访问
🟠404记录不存在
修改于 2025-03-18 05:38:01
上一页
根据id删除
下一页
查询读者的发票抬头
Built with