# 说明

更新模块,返回更新模块的数据

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

updateModule
1

# url

https://api.tapd.cn/modules

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
workspace_id integer 项目ID
id integer 模块ID
name string 标题
description string 详细描述
owner string 负责人

# 调用示例及返回结果

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

curl -u 'api_user:api_password' -d 'workspace_id=10104801&description=更新模块&id=1010104801001377443' 'https://api.tapd.cn/modules'

# 返回结果

{
    "status": 1,
    "data": {
        "Module": {
            "id": "1010104801001377443",
            "name": "创建模块",
            "description": "更新模块",
            "owner": null,
            "created": "2020-11-24 16:53:49"
        }
    },
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

# 版本字段说明

# 版本字段重要字段说明

字段 说明
id ID
name 标题
description 详细描述
created 创建时间
owner 负责人
上次更新: 2024-05-16 14:58:20