数字权益平台对接文档
  1. 7、通用接口列表
数字权益平台对接文档
  • 1、前言
  • 2、沙箱参数与接口规则说明
  • 3、签名方式
  • 4、错误代码说明
  • 5、卡密解密方式
  • 6、账号类型枚举
  • 7、通用接口列表
    • 7.1 订单提交接口
      POST
    • 7.2 订单查询接口
      POST
    • 7.3 订单结果回调通知
      POST
    • 7.4 商户信息查询(余额查询)
      POST
    • 7.5 单产品详情查询
      POST
    • 7.6 全量授权产品查询
      POST
    • 7.7 券码核销回调
      POST
  • 8、其他接口
    • 8.1 说明
    • 8.2 支付宝账号查询接口
      POST
    • 8.3 京东E卡短信验证码发送接口
      POST
  • 9、激活码封装接口
    • 9.1 说明
    • 9.2 激活码提取接口
      POST
    • 9.3 激活码提卡订单查询
      POST
    • 9.4 激活码状态回调
      POST
  1. 7、通用接口列表

7.1 订单提交接口

POST
接口地址,见第二章:接口配置及参数说明

请求参数

Body 参数application/json

示例
{
	"appid": "9733732",
	"method": "order.submit",
	"timestamp": "1763358626",
	"content": "{\"out_no\":\"fdhhfb40kgjccatf\",\"account\":\"15700000000\",\"account_type\":\"*\",\"product_id\":\"100000\",\"num\":1,\"price_limit\":\"5.1\",\"callback_url\":\"https://testapi.nvframe.com/api/sandbox/OnNotify\",\"extend\":{\"customer_ip\":\"192.138.321.121\"}}",
	"sign": "27244ea8b0739d71a4d9e4e8df880d81"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '接口地址,见第二章:接口配置及参数说明' \
--header 'Content-Type: application/json' \
--data-raw '{
	"appid": "9733732",
	"method": "order.submit",
	"timestamp": "1763358626",
	"content": "{\"out_no\":\"fdhhfb40kgjccatf\",\"account\":\"15700000000\",\"account_type\":\"*\",\"product_id\":\"100000\",\"num\":1,\"price_limit\":\"5.1\",\"callback_url\":\"https://testapi.nvframe.com/api/sandbox/OnNotify\",\"extend\":{\"customer_ip\":\"192.138.321.121\"}}",
	"sign": "27244ea8b0739d71a4d9e4e8df880d81"
}'

返回响应

🟢200通用响应
application/json
Body

示例
{
    "code": 0,
    "msg": null,
    "data": {
        "order_no": "251117498270046",
        "out_no": "fdhhfb40kgjccatf"
    }
}
修改于 2025-11-18 03:00:30
上一页
6、账号类型枚举
下一页
7.2 订单查询接口
Built with