curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/users/{userId}/buckets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"buckets": [
{
"id": 123,
"organizationId": 123,
"organizationName": "<string>",
"bucket": "<string>",
"region": "<string>",
"whitelabelId": 123
}
]
}
List all organizational storage buckets that a user has access to. This function is only available through a JWT token.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/users/{userId}/buckets \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"buckets": [
{
"id": 123,
"organizationId": 123,
"organizationName": "<string>",
"bucket": "<string>",
"region": "<string>",
"whitelabelId": 123
}
]
}
User ID
OK
The response is of type object
.