apipost_create_folder
Create folders to organize API documentation within the ApiPost platform, allowing you to structure your API projects with parent-child directory relationships.
Instructions
创建API文档目录,支持在指定父目录下创建新的文件夹
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | 目录描述(可选) | |
name | Yes | 目录名称 | |
parent_id | No | 父目录ID,使用"0"表示根目录,默认为"0" |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "目录描述(可选)",
"type": "string"
},
"name": {
"description": "目录名称",
"type": "string"
},
"parent_id": {
"description": "父目录ID,使用\"0\"表示根目录,默认为\"0\"",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}