get_work_item_detail
Retrieve detailed information about specific work items, such as stories, versions, or issues, from Feishu project management systems to enhance project tracking and decision-making.
Instructions
获取飞书项目工作项详情 Args: work_item_type_key: 工作项类型,可选值为"story"、"version"、"issue", 分别对应需求、版本、缺陷。 work_item_ids: 工作项ID,多个ID之间用逗号分隔
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_item_ids | Yes | ||
work_item_type_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"work_item_ids": {
"title": "Work Item Ids",
"type": "string"
},
"work_item_type_key": {
"enum": [
"story",
"version",
"issue"
],
"title": "Work Item Type Key",
"type": "string"
}
},
"required": [
"work_item_type_key",
"work_item_ids"
],
"title": "get_work_item_detailArguments",
"type": "object"
}