GET
/
api
/
organizations
/
{organizationId}
/
buckets
/
{bucketId}
Get storage bucket
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/buckets/{bucketId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "bucket": {
    "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

bucketId
integer
required

Bucket ID

Response

200 - application/json

OK

The response is of type object.