Delete StagePrivate Preview
This operation deletes a stage in the specified project.
DELETE
/v2/stages/{STAGE_NAME}The base URL for this API is in the following format:
https://api.cloud.zilliz.com
📘Notes
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"
Parameters
Authorizationstringheaderrequired
The authentication token should be an API key with appropriate privileges or a pair of colon-joined username and password, like username:password
.
Example Value: Bearer {{TOKEN}}
STAGE_NAMEstringpathrequired
The name of an existing stage to delete.
Example Value: my_stage
export TOKEN="YOUR_API_KEY"
export STAGE_NAME="my_stage"
curl --request DELETE \
--url "${BASE_URL}/v2/stages/${STAGE_NAME}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
Responses200 - application/json
Returns a list of stages.
codeinteger
Response code.
dataobject
stageNamestring
The name of the created stage.
Returns an error message.
codeinteger
Response code.
messagestring
Error message.
{
"code": 0,
"data": {
"stageName": "mysql-stage"
}
}