Appearance
功能概述
价格配置信息
接口访问
接口地址
common/price/config
请求方式 Method
GET
Header - Authorization Type : Bearer Token
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| token | string | 32 | true | 用户身份标识令牌 | - |
返回值
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| yeeBaoPrice | array | true | 椰宝价格列表 |
| memberPrice | array | true | 会员价格列表 |
yeeBaoPrice
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| price | string | true | 价格 |
| product | string | true | 椰宝数量 |
| businessType | int | true | 业务类型 0-文档售价 1-19.9 2-39.9 3-59.9 |
memberPrice
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| price | string | true | 价格 |
| type | string | true | 购买类型 |
| businessType | int | true | 业务类型 1.月 2.季 3.年 |
返回示例
{
"response": {
"yeeBaoPrice": [
{
"price": 19.9,
"product": 129,
"businessType": 1
},
{
"price": 39.9,
"product": 299,
"businessType": 2
},
{
"price": 59.9,
"product": 529,
"businessType": 3
}
],
"memberPrice": [
{
"price": 99,
"product": "月",
"businessType": 1
},
{
"price": 268,
"product": "季",
"businessType": 2
},
{
"price": 998,
"product": "年",
"businessType": 3
}
]
},
"requestId": "53a4882b-20a7-4ab9-9326-b680bdebc214"
}