跳转到主要内容
POST
/
open
/
agentic_doc_processor
/
{tenant_name}
/
v1
/
app-manage
/
version
/
delete
删除抽取应用的配置
const options = {
  method: 'POST',
  headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({app_id: 'app_abc123', config_version: 'v1'})
};

fetch('https://adp.laiye.com/open/agentic_doc_processor/{tenant_name}/v1/app-manage/version/delete', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "code": "success",
  "message": "success"
}

授权

X-API-KEY
string
header
必填

用户接入 OpenAPI 的令牌,在应用 API 中查看。

路径参数

tenant_name
string
默认值:laiye
必填

租户名称,默认 laiye。

请求体

application/json
app_id
string
必填
config_version
string
必填

响应

通用响应。

code

业务码。成功通常为 success 或 200。

message
string

返回信息。

tips
string | null

详细信息,默认为空。