Domain name for API request: bi.intl.tencentcloudapi.com.
This API is used to obtain project information.
A maximum of 100 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: DescribeProjectList. |
| Version | Yes | String | Common Params. The value used for this API: 2022-01-05. |
| Region | No | String | Common Params. This parameter is not required. |
| PageSize | No | Integer | Page capacity. The initial version defaults to 20 and may change dynamically based on screen width in the future. |
| PageNo | No | Integer | Page marker. |
| Keyword | No | String | Fuzzy search field. |
| AllPage | No | Boolean | Whether to display all. If true, ignore pagination. |
| ModuleCollection | No | String | Role information. |
| ModuleIdList.N | No | Array of String | moduleId set. |
| Parameter Name | Type | Description |
|---|---|---|
| ErrorInfo | ErrorInfo | Custom error information object. Note: This field may return null, indicating that no valid values can be obtained. |
| Extra | String | Additional information. Note: This field may return null, indicating that no valid values can be obtained. |
| Msg | String | API information. Note: This field may return null, indicating that no valid values can be obtained. |
| Data | ProjectListData | Data. Note: This field may return null, indicating that no valid values can be obtained. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to check project list data.
POST / HTTP/1.1
Host: bi.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeProjectList
<Common request parameters>
{
"PageSize": 1,
"PageNo": 1,
"Keyword": "demo",
"AllPage": true
}{
"Response": {
"ErrorInfo": {
"ErrorTip": "",
"ErrorLevel": "INFO",
"DocLink": "Data does not exist",
"FAQ": "",
"ReservedField": ""
},
"Extra": "",
"Msg": "Successful",
"Data": {
"List": [
{
"Id": 1,
"Logo": "http://www.cloud.com***/logo.png",
"Name": "BI project",
"ColorCode": "#666",
"CreatedUser": "Zhang San",
"CreatedAt": "Zhang San",
"MemberCount": 0,
"PageCount": 0,
"LastModifyName": "Zhang San",
"Source": "",
"Apply": true,
"UpdatedUser": "Zhang San",
"UpdatedAt": "Zhang San",
"CorpId": "10010101",
"Mark": "Remarks",
"Seed": "",
"AuthList": [
"10101"
],
"PanelScope": "scope",
"IsExternalManage": true,
"ManagePlatform": "saas",
"ConfigList": [
{
"ModuleGroup": "project",
"Components": [
{
"ModuleId": "10101",
"IncludeType": "useable",
"Params": ""
}
]
}
]
}
],
"Total": 1,
"TotalPages": 1
},
"RequestId": "dfjksak10w1qdsk2312"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
| Error Code | Description |
|---|---|
| InternalError.Internal | Internal error. |
| MissingParameter.MissingParam | The required parameter is missing. |
| UnauthorizedOperation.Authorize | Permission error. |
| UnauthorizedOperation.Inactive | User is not enabled. |
| UnauthorizedOperation.UserNotExist | The user does not exist. |
Feedback