1. 商品相关
思博业务系统
  • 商品相关
    • 商品相关升降机产品
      GET
    • 获取商品列表带分页
      GET
    • 获取指定商品信息
      GET
  • 订单相关
    • 创建订单
      POST
    • 创建产品续费订单
      POST
    • 创建升降级订单
      POST
    • 取消订单
      POST
    • 创建订单并支付
      POST
    • 创建产品续费订单并支付
      POST
  • 业务相关
    • 插件自定义按钮操作
      POST
    • 获取插件页面tab
      POST
    • 渲染插件页面(统一入口)
      POST
    • 获取插件前台自定义按钮
      POST
    • 执行自定义函数操作
      POST
  • 公告(文章)相关
    • 获取文章分类
      GET
    • 获取文章列表带分页
      GET
    • 获取指定文章信息
      GET
  • 用户中心
  • 登陆接口
    POST
  1. 商品相关

商品相关升降机产品

开发中
GET
/api/product/upgrade/getUpgradeInfo

请求参数

Query 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/api/product/upgrade/getUpgradeInfo?product_id=16'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "code": 1,
    "msg": "获取成功",
    "time": "1767975673",
    "data": [
        {
            "id": 7,
            "product_name": "测试商品1(免费)",
            "billing_type": "free",
            "cycle_price": "[]",
            "oneprice": "0",
            "price_matrix": {
                "type": "free",
                "oneoff_original": 0,
                "oneoff_discount": "",
                "first_original": 0,
                "first_discount": "",
                "first_cycle_key": "",
                "first_cycle_txt": "",
                "cycles": [],
                "cycles_discount": []
            },
            "billing_type_text": "Free"
        },
        {
            "id": 8,
            "product_name": "测试商品2一次性",
            "billing_type": "oneoff",
            "cycle_price": "[]",
            "oneprice": "20",
            "price_matrix": {
                "type": "oneoff",
                "oneoff_original": 20,
                "oneoff_discount": "",
                "first_original": 20,
                "first_discount": "",
                "first_cycle_key": "",
                "first_cycle_txt": "",
                "cycles": [],
                "cycles_discount": []
            },
            "billing_type_text": "Oneoff"
        }
    ]
}
修改于 2026-01-10 13:57:25
下一页
获取商品列表带分页
Built with