获取标签列表接口
POST
/tagcenter/getTagList
请求参数
Body 参数application/json
entityAlias
string
主体类型
keyword
string
关键字
typeguid
string
分类标识
first
integer
页码
pageSize
integer
每页数量
示例
{
"entityAlias": "string",
"keyword": "string",
"typeguid": "string",
"first": 0,
"pageSize": 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 '/tagcenter/getTagList' \
--header 'Content-Type: application/json' \
--data-raw '{
"entityAlias": "string",
"keyword": "string",
"typeguid": "string",
"first": 0,
"pageSize": 0
}'
返回响应
🟢200成功
application/json
Body
status
object
必需
code
string
状态码
text
string
提示文本
custom
object
业务数据
taglist
array [object {5}]
标签列表
count
integer
数量
示例
{
"status": {
"code": "string",
"text": "string"
},
"custom": {
"taglist": [
{
"tagguid": "string",
"tagalias": "string",
"tagname": "string",
"labelcode": [
{
"text": "string",
"value": "string"
}
],
"codeid": [
{
"unitname": "string",
"unithex": "string"
}
]
}
],
"count": 0
}
}
修改于 2023-06-16 03:16:21