该接口用于删除自定义标签。需注意,删除时会同时解绑实体跟标签的关系。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数。
const columns = [
{
width: '20%',
title: '参数',
dataIndex: 'Name',
className: 'openapi-doc-parameter-table-name'
},
{
width: 130,
title: '类型',
dataIndex: 'DataType',
className: 'openapi-doc-parameter-table-type'
},
{
width: 90,
title: '是否必填',
dataIndex: 'IsRequired',
className: 'openapi-doc-parameter-table-required'
},
{
width: '20%',
title: '示例值',
dataIndex: 'Example',
className: 'openapi-doc-parameter-table-example'
},
{
title: '描述',
dataIndex: 'Description',
className: 'openapi-doc-parameter-table-description'
},
];
const queryData = [
{
rowKey: '->Action',
Name: 'Action',
DataType: 'String',
IsRequired: '是',
Example: <RenderMd content={"DeleteEntityTag"} />,
Description: <RenderMd content={"要执行的操作,取值:DeleteEntityTag。"} />,
children: [
]
},
{
rowKey: '->Version',
Name: 'Version',
DataType: 'String',
IsRequired: '是',
Example: <RenderMd content={"2026-03-01"} />,
Description: <RenderMd content={"API的版本,取值:2026-03-01。"} />,
children: [
]
},
];
return (<Table
rowKey="rowKey"
className="openapi-doc-parameter-table"
columns={columns}
data={queryData}
border={ { cell: true, wrapper: true } }
scroll={ { x: "auto" } }
pagination={false}
/>);
const columns = [
{
width: '20%',
title: '参数',
dataIndex: 'Name',
className: 'openapi-doc-parameter-table-name'
},
{
width: 130,
title: '类型',
dataIndex: 'DataType',
className: 'openapi-doc-parameter-table-type'
},
{
width: 90,
title: '是否必填',
dataIndex: 'IsRequired',
className: 'openapi-doc-parameter-table-required'
},
{
width: '20%',
title: '示例值',
dataIndex: 'Example',
className: 'openapi-doc-parameter-table-example'
},
{
title: '描述',
dataIndex: 'Description',
className: 'openapi-doc-parameter-table-description'
},
];
const bodyData = [
{
rowKey: '->TypeName',
Name: 'TypeName',
DataType: 'String',
IsRequired: '是',
Example: <RenderMd content={"Tag"} />,
Description: <RenderMd content={"元数据类型"} />,
children: [
]
},
{
rowKey: '->QualifiedName',
Name: 'QualifiedName',
DataType: 'String',
IsRequired: '是',
Example: <RenderMd content={"Tag:///自定义标签5@102/default/default@21000xxxxx"} />,
Description: <RenderMd content={"tag唯一标志"} />,
children: [
]
},
];
return (<Table
rowKey="rowKey"
className="openapi-doc-parameter-table"
columns={columns}
data={bodyData}
border={ { cell: true, wrapper: true } }
scroll={ { x: "auto" } }
pagination={false}
/>);
下表仅列出本接口特有的返回参数。更多信息请参见返回结构。
const columns = [
{
width: '25%',
title: '参数',
dataIndex: 'Name',
className: 'openapi-doc-parameter-table-name',
},
{
width: 130,
title: '类型',
dataIndex: 'DataType',
className: 'openapi-doc-parameter-table-type'
},
{
width: '25%',
title: '示例值',
dataIndex: 'Example',
className: 'openapi-doc-parameter-table-example'
},
{
title: '描述',
dataIndex: 'Description',
className: 'openapi-doc-parameter-table-description'
},
];
const data = [
{
rowKey: "->Success",
Name: "Success",
DataType: "Boolean",
Example: <RenderMd content={"true"} />,
Description: <RenderMd content={"是否删除成功"} />,
children: [
]
},
{
rowKey: "->AffectedCount",
Name: "AffectedCount",
DataType: "Integer",
Example: <RenderMd content={"1"} />,
Description: <RenderMd content={"本次更新的实体数"} />,
children: [
]
},
];
return (<Table
rowKey="rowKey"
className="openapi-doc-parameter-table"
columns={columns}
data={data}
border={ { cell: true, wrapper: true } }
scroll={ { x: "auto" } }
pagination={false}
/>);
POST /?Action=DeleteEntityTag&Version=2026-03-01 HTTP/1.1
Host: dataleap-qa.cn-beijing.volcengineapi.com
Content-Type: application/json
X-Date: 20260301T120000Z
Authorization: HMAC-SHA256 Credential=AK****/20260301/cn-beijing/dataleap_qa/request, SignedHeaders=host;x-date, Signature=***
{
"TypeName": "Tag",
"QualifiedName": "Tag:///自定义标签5@102/default/default@21000xxxxx"
}
{
"ResponseMetadata": {
"RequestId": "20260301120000000000000000000003",
"Action": "DeleteEntityTag",
"Version": "2026-03-01",
"Service": "dataleap_qa",
"Region": "cn-beijing"
},
"Result": {
"Timestamp": 0,
"Message": "success",
"Code": 0,
"Data": {
"Success": true,
"AffectedCount": 1
}
}
}
下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。
const columns = [
{
title: '状态码',
dataIndex: 'HttpCode',
width: '12%',
className: 'openapi-doc-errorcode-table-httpcode'
},
{
title: '错误码',
dataIndex: 'ErrorCode',
width: '22%',
className: 'openapi-doc-errorcode-table-errorcode'
},
{
title: '错误信息',
dataIndex: 'ErrorMessage',
width: '33%',
className: 'openapi-doc-errorcode-table-errormessage'
},
{
title: '说明',
dataIndex: 'Description',
width: '33%',
className: 'openapi-doc-errorcode-table-description'
},
];
const data = [
{
HttpCode: 400,
ErrorCode: 'InvalidParameter',
ErrorMessage: <RenderMd content={"The specified parameter %s is invalid."} />,
Description: <RenderMd content={""} />,
},
{
HttpCode: 400,
ErrorCode: 'MissingParameter',
ErrorMessage: <RenderMd content={"The required parameter %s is missing."} />,
Description: <RenderMd content={""} />,
},
{
HttpCode: 404,
ErrorCode: 'NotFound',
ErrorMessage: <RenderMd content={"The requested resource does not exist."} />,
Description: <RenderMd content={""} />,
},
{
HttpCode: 500,
ErrorCode: 'InternalError',
ErrorMessage: <RenderMd content={"The request has failed due to an unknown error."} />,
Description: <RenderMd content={""} />,
},
];
return (<Table
columns={columns}
data={data}
border={ { cell: true, wrapper: true } }
scroll={ { x: "auto" } }
pagination={false}
/>);