List Storage Integrations (V2)
This operation lists bucket storage integrations in a project. It returns public storage integration statuses only.
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.
export BASE_URL="https://api.cloud.zilliz.com"
The authentication token should be an API key with appropriate privileges.
The ID of the project.
The current page number.
The number of records to include in each response.
export TOKEN="YOUR_API_KEY"
curl --request GET \
--url "${BASE_URL}/v2/storageIntegrations?projectId=proj-xxxxxxxxxxxxxxxxxxxxxx" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
A success response.
Response code.
The current page of storage integration summaries.
The ID of the storage integration.
The name of the storage integration.
The public status of the storage integration.
The status message. This field is empty when there is no message.
The ID of the region.
The bucket, container, or storage name.
The total number of visible storage integrations after filtering.
The current page number.
The page size.
A failure response.
Response code.
Error message.
{
"code": 0,
"data": {
"storageIntegrations": [
{
"integrationId": "integ-xxxxxxxxxxxxxxxxxxx",
"name": "analytics-s3",
"status": "ACTIVE",
"message": "",
"regionId": "aws-us-west-2",
"bucketName": "my-bucket"
}
],
"count": 1,
"currentPage": 1,
"pageSize": 10
}
}
{
"code": 1800,
"message": "User hasn't authenticated"
}