GET
/
api
/
organizations
/
{organizationId}
/
buckets
List storage buckets
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"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Response

200 - application/json

OK

The response is of type object.