添加标签
开发中POST
http://localhost:8098/admin/tag添加标签。
请求参数
Body 参数application/json
displayName
string
标签名
>= 1 字符<= 256 字符
slug
string
标签别名(唯一)
>= 1 字符<= 128 字符
color
string | null
标签颜色
<= 24 字符
示例值:
#FFFFFF
正则匹配:
^#([0-9a-fA-F]{6})$
示例
{
"displayName": "string",
"slug": "string",
"color": "#FFFFFF"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
errMsg
null
必需
data
object
必需
tagId
integer
标签 ID
displayName
string
标签名
slug
string
标签别名
color
string | null
标签颜色
示例
添加成功
{
"code": 200,
"errMsg": null,
"data": {
"tagId": 72,
"displayName": "必度光广体",
"slug": "consequat enim culpa",
"color": "#5ADC1b"
}
}
最后修改时间: 8 个月前