List storage buckets

List storage buckets

get

Retrieve all configured storage buckets. This does not list the secret key.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/organizations/{organizationId}/buckets HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "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"
    }
  ]
}

Last updated

Was this helpful?