apipost_delete
Remove API documentation entries from ApiPost by specifying interface IDs. Use this tool to delete single or multiple API interfaces after retrieving their IDs from the interface list.
Instructions
批量删除API接口文档,支持单个或多个接口删除。删除前先用apipost_list查看接口列表获取ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_ids | Yes | API接口ID数组(可从列表中获取target_id)- 支持单个["id1"]或多个["id1","id2","id3"] |
Input Schema (JSON Schema)
{
"properties": {
"api_ids": {
"description": "API接口ID数组(可从列表中获取target_id)- 支持单个[\"id1\"]或多个[\"id1\",\"id2\",\"id3\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"api_ids"
],
"type": "object"
}