查询产品详情
POST
/v1/product/detail
请求参数
Body 参数application/json
id
integer
ID 编号
示例
{
"id": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/product/detail' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
状态码
msg
string
信息
data
object
数据
id
integer
ID 编号
name
string
名称
icon
string
封面
type
integer
必需
maxBuyNum
integer
单次最大下单数量
faceValue
null
面值(单位:分)
enableSalesChannels
array[string]
销售渠道
disableSalesChannels
array[string]
禁售渠道
limitPrice
null
限价(单位:分)
limitBalance
null
必需
limitGuarantee
null
必需
description
string
详情描述
categoryId
integer
分类ID
categoryName
string
分类名称
salesPrice
string
售价(单位:分)
status
integer
必需
stockNum
integer
必需
template
array [object {7}]
下单模板
示例
{
"code": 200,
"msg": "操作成功",
"data": {
"id": 110056,
"name": "【官方直充】腾讯视频会员7天",
"icon": "https://cdn.gamesup.cn/dev/20250223/18b0c189112a878fc2c79c2a3f365672.png",
"type": 1,
"maxBuyNum": 1,
"faceValue": null,
"enableSalesChannels": [
"私域",
"拼多多",
"闲鱼",
"淘宝",
"京东",
"小红书"
],
"disableSalesChannels": [
"抖音",
"快手"
],
"limitPrice": null,
"limitBalance": null,
"limitGuarantee": null,
"description": "<p><img src=\"https://cdn.gamesup.cn/dev/20250223/43c17396fd2ac2053ca9398a458fbcb4.png\" alt=\"\"/><img src=\"https://cdn.gamesup.cn/dev/20250223/12f31b20c42f410405acb94e7f5db3ed.png\" alt=\"\"/><img src=\"https://cdn.gamesup.cn/dev/20250223/4db36f18912d9666149d91e9643ce554.png\" alt=\"\"/><br/></p>",
"categoryId": 100025,
"categoryName": "腾讯视频",
"salesPrice": "7.95",
"status": 1,
"stockNum": 99999,
"template": [
{
"key": "account",
"name": "手机号",
"pattern": [
"phone"
],
"type": "text",
"maxlength": 11,
"placeholder": "请输入手机号",
"required": null
}
]
}
}
修改于 2025-03-29 06:11:42