get_view_list
Retrieve a list of project views from Feishu by specifying the work item type, such as story, version, or issue, for streamlined project management insights.
Instructions
获取飞书项目视图列表 Args: work_item_type_key: 工作项类型,可选值为"story"、"version"、"issue", 分别对应需求、版本、缺陷。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_item_type_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"work_item_type_key": {
"enum": [
"story",
"version",
"issue"
],
"title": "Work Item Type Key",
"type": "string"
}
},
"required": [
"work_item_type_key"
],
"title": "get_view_listArguments",
"type": "object"
}