Skip to main content
POST
/
open
/
agentic_doc_processor
/
{tenant_name}
/
v1
/
app-manage
/
version
/
delete
Delete extraction application configuration
const options = {
  method: 'POST',
  headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({app_id: '<string>', config_version: '<string>'})
};

fetch('https://adp-global.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": "<string>",
  "message": "<string>",
  "tips": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

tenant_name
string
default:laiye
required

Tenant name. Default: laiye.

Body

application/json
app_id
string
required
config_version
string
required

Response

Common response.

code
message
string
tips
string | null