- top.dingwen.io.api.doc
- 网站[webplus]
- 枚举
- 异步[async]
- 邮件
- 测试
- 管道业务流[pipeline]
- 测试
- 本地缓存[caffeine]
- 分布式缓存[Redis]
- 二级缓存
- 网络通讯[websocket]
- 进度条
- 日志监控
- 令牌[jwt]
- 配置[config]
- 字典[dict]
- 翻译
- 敏感词
- 公共模块
- 安全模块
枚举序列化反序列化测试-请求体参数
POST
/common/enums/test/se-de-bo
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
profile
enum<string>
Profile枚举
枚举值:
proddevtestpre
msg
string
消息
示例
{
"profile": "prod",
"msg": "string"
}
返回响应
🟢200成功
application/json
Body
code
number
返回code
message
string
消息
data
object (枚举请求体入参)
数据
profile
enum<string>
Profile枚举
枚举值:
proddevtestpre
msg
string
消息
currentTime
string <date-time>
服务器响应时间
正则匹配:
yyyy-MM-dd HH:mm:ss
tranceId
string
请求id
示例
{
"code": 0,
"message": "string",
"data": {
"profile": "prod",
"msg": "string"
},
"currentTime": "2019-08-24T14:15:22Z",
"tranceId": "string"
}
修改于 2024-06-26 09:42:45