# 说明

计算符合查询条件的Wiki附件数量并返回

# url

https://api.tapd.cn/tapd_wikis_attachments/count

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

只返回Wiki附件数量

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
id integer id
filename string 文件名
size int 文件大小,字节
owner string 上传者
workspace_id integer 项目ID
created datetime 创建时间 支持时间查询
modified datetime 最后修改时间 支持时间查询
wiki_id integer 关联的wiki id

# 调用示例及返回结果

# 获取项目下 wiki附件 的数量

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

curl -u 'api_user:api_password' 'https://api.tapd.cn/tapd_wikis_attachments/count?workspace_id=10104801'

# 返回结果

{
    "status": 1,
    "data": {
        "count": 23
    },
    "info": "success"
}
1
2
3
4
5
6
7
上次更新: 2022-06-28 16:07:18