POST/api/v1/indices/rag/index/chunk/deletecURLcURLCopycurl -X POST "https://{workspaceId}.cn-beijing.maas.aliyuncs.com/api/v1/indices/rag/index/chunk/delete" \ -H "Authorization: Bearer $DASHSCOPE_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "pipelineId": "your_index_id", "chunkIds": ["chunk_abc123", "chunk_def456"] }'200400401Copy{ "code": "Success", "status_code": 200, "request_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" }此操作不可逆,删除后切片无法恢复。单次最多删除 10 个切片。AuthorizationsAuthorizationstringheaderrequiredDashScope API Key,在控制台 API Key 页面(https://rag.console.aliyun.com/settings/apikey)获取。Bodyapplication/jsonpipelineIdstringrequired知识库 ID。chunkIdsstring[]required要删除的切片 ID 列表,单次最多 10 个。Required range:items <= 10Response200-application/jsoncodestring响应码,成功时为 Success。status_codeintegerHTTP 状态码。request_idstring请求唯一标识,排查问题时请提供此 ID。dataobject操作成功时返回空对象。Example:CopyCopy{} successboolean操作是否成功。messagestring响应消息,成功时为 success。