跳到主要内容

查看项目列表

Lists existing projects.

GET
/v1/projects
Base URL

该 API 的 Base URL 格式如下:

https://controller.api.${CLOUD_REGION}.zilliz.com.cn

📘说明
export CLOUD_REGION="ali-cn-hangzhou"
export BASE_URL="https://controller.api.${CLOUD_REGION}.zilliz.com.cn"
参数
Authorizationstringheaderrequired

认证令牌,应为具备适当权限的 API 密钥。

示例值:Bearer {{TOKEN}}
export TOKEN="YOUR_API_KEY"

curl --request GET \
--url "${BASE_URL}/v1/projects" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
响应200 - application/json

Returns a list of projects.

codeinteger

响应码。

dataarray

响应返回项目列表。

[]dataobject

A project.

createTimeMillistring

一个数字值,代表项目创建的时间,单位为毫秒,起始时间为 1970 年 1 月 1 日 00:00:00 UTC。

instanceCountinteger

项目中已创建的集群数量。

projectIdstring

项目的 ID。

projectNamestring

项目的名称。

Returns an error message.

codeinteger

响应码。

messagestring

错误描述。

{
"code": 200,
"data": [
{
"createTimeMilli": 1685006864000,
"instanceCount": 0,
"projectId": "proj-xxxxxxxxxxxxxxxxxxxxxx",
"projectName": "Default Project"
}
]
}