标签数据查询接口
POST
/tagcenter/getTagData
请求参数
Body 参数application/json
entityAlias
string
主体类型
rowguid
string
主体唯一标识
taglist
string
标签别名,可多选
示例
{
"entityAlias": "string",
"rowguid": "string",
"taglist": "string"
}
示例代码
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/getTagData' \
--header 'Content-Type: application/json' \
--data-raw '{
"entityAlias": "string",
"rowguid": "string",
"taglist": "string"
}'
返回响应
🟢200成功
application/json
Body
status
object
必需
code
string
必需
text
string
必需
custom
array [object {8}]
必需
code
string
状态码
text
string
提示文本
tagguid
string
标签唯一标识
tagalias
string
标签别名
tagname
string
标签名称
value
string
标签值,如果有代码项则为代码项文本
changeable
string
true/false, 是否可修改
labelcode
array [object {3}]
可选
示例
{
"status": {
"code": "string",
"text": "string"
},
"custom": [
{
"code": "string",
"text": "string",
"tagguid": "string",
"tagalias": "string",
"tagname": "string",
"value": "string",
"changeable": "string",
"labelcode": [
{
"text": "string",
"value": "string",
"isselected": "string"
}
]
}
]
}
修改于 2023-06-16 03:18:07