首图支付网关
  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/add

请求参数

Body 参数application/json

示例
{
    "appId": "string",
    "sign": "string",
    "reqTime": "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/add' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appId": "string",
    "sign": "string",
    "reqTime": "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": {},
    "msg": "string"
}
🟢201成功
🟠401没有权限
🟠403禁止访问
🟠404记录不存在
修改于 2025-03-18 05:37:55
上一页
退款通知回调
下一页
根据id删除
Built with