# 说明

创建需求分类,返回创建需求分类的数据

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

addStoryCategory
1

# url

https://api.tapd.cn/story_categories

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
workspace_id integer 项目ID
name string 分类名称
description string 分类描述
parent_id integer 父分类ID

# 调用示例及返回结果

# 创建需求分类

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' -d 'workspace_id=10104801&name=test111' 'https://api.tapd.cn/story_categories'

# 返回结果

{
    "status": 1,
    "data": {
        "Category": {
            "id": "1010104801000086939",
            "workspace_id": "10104801",
            "name": "test111",
            "description": null,
            "parent_id": "0",
            "modified": "2020-08-10 10:02:46",
            "created": "2020-08-10 10:02:45",
            "creator": "dev",
            "modifier": "dev"
        }
    },
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

# 需求分类字段说明

# 需求分类重要字段说明

字段 说明
id id
workspace_id 项目ID
name 分类名称
description 分类描述
parent_id 父分类ID
created 创建时间
creator 创建人
modified 最后修改时间
modifier 最后修改人
上次更新: 2024-05-16 14:58:20