List StagesPrivate Preview
This operation lists all stages in the specified project. You need to be
The base URL for this API is in the following format:
https://api.cloud.zilliz.com
The endpoints on the control plane currently supports up to 20 requests per second per user per endpoint.
This endpoint is currently in Public Preview. If you have encountered any issue related to this endpoint, please contact Zilliz Cloud support.
export BASE_URL="https://api.cloud.zilliz.com"
The authentication token should be an API key with appropriate privileges or a pair of colon-joined username and password, like username:password
.
The target project of this operation.
The number of records to include in each response.
The current page number.
export TOKEN="YOUR_API_KEY"
curl --request GET \
--url "${BASE_URL}/v2/stages?projectId=proj-xxxxxxxxxxxxxxxxx" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
Returns a list of stages.
Response code.
The total number of stages.
The current page number.
The number of records in each response.
The list of stages.
The name of the stage.
Returns an error message.
Response code.
Error message.
{
"code": 200,
"data": [
{
"stageName": "my_stage_1"
},
{
"stageName": "my_stage_2"
},
{
"stageName": "my_stage_3"
}
]
}