curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/buckets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"buckets": [
{
"id": 1,
"accessKey": "AKIAIOSFODNN7EXAMPLE",
"endpoint": "https://s3.amazonaws.com",
"bucket": "my-organization-bucket",
"region": "us-west-2",
"connected": true,
"checkConnectivityPrefix": "data/",
"storageProvider": "s3",
"storageAccountName": "my-storage-account"
}
]
}
Retrieve all configured storage buckets. This does not list the secret key.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/buckets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"buckets": [
{
"id": 1,
"accessKey": "AKIAIOSFODNN7EXAMPLE",
"endpoint": "https://s3.amazonaws.com",
"bucket": "my-organization-bucket",
"region": "us-west-2",
"connected": true,
"checkConnectivityPrefix": "data/",
"storageProvider": "s3",
"storageAccountName": "my-storage-account"
}
]
}
Organization ID
OK
The response is of type object
.