查询项目列表

最近更新时间: 2026-09-17 00:00:36

1. 接口描述

接口请求域名: tpo.api3.fincloud.tencent.cn。

查询项目列表

默认接口请求频率限制:20次/秒。

接口更新时间:2023-07-24 14:42:18。

接口只验签名不鉴权。

2. 输入参数

以下请求参数列表仅列出了接口请求参数和部分公共参数,完整公共参数列表见公共请求参数

参数名称 必选 允许NULL 类型 描述
Action String 公共参数,本接口取值:DescribeProjects
Version String 公共参数,本接口取值:2020-09-20
Region String 公共参数,地域信息本接口不需要传递此参数。
PageNumber Uint64 页码
示例值: 100
PageSize Uint64 每页数量
示例值: 100
Filter DescribeProjectsFilter 过滤条件
示例值:查看
MemberUin String 成员UIN
示例值: 100

3. 输出参数

参数名称 类型 描述
TotalCount Uint64 总数
示例值: 100
ProjectSet Array of Project 项目列表
示例值:查看
RequestId String 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。

4. 错误码

以下仅列出了接口业务逻辑相关的错误码,其他错误码详见公共错误码

错误码 描述
InternalError.ThirdPartServiceBadRequest 服务调用失败
InternalError.ComponentFail 调用其它组件接口失败
InternalError.DatabaseError 内部数据库错误

5. 示例

示例1 DescribeProjects

输入示例

POST / HTTP/1.1
Host: tpo.api3.fincloud.tencent.cn
Content-Type: application/json
X-TC-Action: DescribeProjects
<Common Parameters>

{
    "PageNumber": 1,
    "PageSize": 10,
    "Filter": {
        "Type": 1,
        "Keyword": ""
    },
    "MemberUin": ""
}

输出示例

{
    "Response": {
        "TotalCount": 1,
        "ProjectSet": [
            {
                "ProjectId": "pr-92fbf08a",
                "ProjectName": "proj",
                "ProjectDescription": "desc",
                "Organization": "",
                "Creator": "applicant",
                "CreatorUin": 100004603108,
                "CreateTime": "2024-01-10 10:00:00",
                "CreateTimeIso": "2024-01-10T10:00:00+08:00",
                "OrgId": "org-123456",
                "OrgName": "",
                "OrgOperator": "",
                "OrgOperationTime": "2024-01-10 10:00:00",
                "OrgOperationTimeIso": "2024-01-10T10:00:00+08:00",
                "AppId": 1234567890,
                "Uin": "100004603108"
            }
        ],
        "RequestId": "ae2bd2b7-1d55-4b0a-8154-e02407a2b390"
    }
}