企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` url: 域名/api/app.php?s=App.Products.ProductDetail ``` #### 请求类型 post #### 请求参数 | 字段名 | 变量名 | 必填 | 类型 | 示例值 | 描述 | | --- | --- |---- |----| --- | --- |---- | | token | access_token|是 | string | | | | 应用key | app_key|是|string | | 应用key | | 商品编码 | number|是 |int |1010065 | 商品编码 | #### 返回结果 ``` { "ret": 200, "data": { "number": 1010065, "category": null, "goods_name": "【卡密兑换码】奈雪的茶代金券【30元】【质保12小时】", "type": 1, "rule": "", "originprice": "30.00", "price": 25.03, "status": 1, "stock": -1, "param": [ { "name": "account", "type": 1, "desc": "手机号码", "content": ""              }, .... ]      }, "msg": "" } ``` #### 返回结果参数说明 |变量名 | 类型 | 示例值 | 描述 | | --- | --- | --- | --- | | ret | int | 200 | 状态码 | | data| json| {} | 数据数组 | | data.number| int|1010001| 商品编号 | | data.goods_name| string|【卡密兑换码】奈雪的茶代金券【30元】【质保12小时】| 商品名称| | data.type| int|1| 商品类型 1: 卡密 2:话费 3:直充 6:特价 7:低价| | data.rule| string|''| 规则描述| | data.originprice| decimo|30.00| 商品原价| | data.price| decimo|25.03| 商品进价| | data.status| int|1| 商品状态 1: 上架 0:下架| | data.stock| int|-1| 库存 -1代表无限制| | data.param| array|参数| 根据情况显示| | data.param.name| string|account| 参数字段名| | data.param.type| int|1|字符串 | | data.param.desc| string|手机号码|字段描述 | | msg| string| | 结果描述| #### 错误返回结果 ``` { "ret": 200, "data": "商品不存在", "msg": "" } ```