Last updated 7 months ago
Retrieve all configured storage buckets. This does not list the secret key.
Organization ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/buckets', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "buckets": [ { "accessKey": "text", "endpoint": "text", "bucket": "text", "region": "text", "connected": false, "checkConnectivityPrefix": "text" } ] }