# 说明

返回符合查询条件的发布计划数量 旧版发布计划数量接口 (opens new window)

# url

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

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
id integer id 支持多ID查询
workspace_id integer 项目ID
name string 标题 支持模糊匹配
description string 详细描述
startdate date 开始时间
enddate date 结束时间
creator string 结束时间
created datetime 创建时间 支持时间查询
modified timestamp 最后修改时间 支持时间查询
status enum('done','open') 状态

# 调用示例及返回结果

# 获取项目下发布计划数量

# curl 调用示例

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

# 返回结果

{
    "status": 1,
    "data": {
        "count": 1
    },
    "info": "success"
}
1
2
3
4
5
6
7
上次更新: 2024-09-04 09:21:23