Skip to content

功能概述

价格配置信息

接口访问

接口地址

common/price/config

请求方式 Method

GET

Header - Authorization Type : Bearer Token

属性类型长度必填默认值说明访问版本
tokenstring32true用户身份标识令牌-

返回值

属性类型必填说明
yeeBaoPricearraytrue椰宝价格列表
memberPricearraytrue会员价格列表

yeeBaoPrice

属性类型必填说明
pricestringtrue价格
productstringtrue椰宝数量
businessTypeinttrue业务类型 0-文档售价 1-19.9 2-39.9 3-59.9

memberPrice

属性类型必填说明
pricestringtrue价格
typestringtrue购买类型
businessTypeinttrue业务类型 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"
}