external
Archives
Bandset
Catalog
Report
Stores
List stores
Stores
List stores
List stores under current organization
GET
/
v0
/
stores
curl --request GET \
--url https://api.pixxel.space/v0/stores \
--header 'Authorization: <api-key>'
{
"stores": [
{
"configs": {
"bucket": "my-data-bucket",
"path_prefix": "data/processed/",
"region": "us-east-2"
},
"created_at": "2024-03-20T15:04:05Z",
"created_by": "ea2a79fc-6f68-40d7-8b79-18195bf74872",
"id": "576d8241-6e78-40ad-b3e6-295edbfe71f5",
"labels": {
"env": "prod",
"team": "data"
},
"name": "my-analysis-store",
"type": "S3",
"updated_at": "2024-03-20T15:04:05Z"
}
]
}
Authorizations
Response
200
application/json
OK
Store creation time
Example:
"2024-03-20T15:04:05Z"
Identifier of the user that created store
Example:
"ea2a79fc-6f68-40d7-8b79-18195bf74872"
Identifier to be used while transferring data
Example:
"576d8241-6e78-40ad-b3e6-295edbfe71f5"
User defined labels for metadata
Example:
{ "env": "prod", "team": "data" }
Unique user friendly name for easier identification
Example:
"my-analysis-store"
Type of bucket depending on the cloud provider. Currently Supported - S3, AZBLOB, GCS
Available options:
S3
, GCS
, AZBLOB
Example:
"S3"
Store last updated time
Example:
"2024-03-20T15:04:05Z"
curl --request GET \
--url https://api.pixxel.space/v0/stores \
--header 'Authorization: <api-key>'
{
"stores": [
{
"configs": {
"bucket": "my-data-bucket",
"path_prefix": "data/processed/",
"region": "us-east-2"
},
"created_at": "2024-03-20T15:04:05Z",
"created_by": "ea2a79fc-6f68-40d7-8b79-18195bf74872",
"id": "576d8241-6e78-40ad-b3e6-295edbfe71f5",
"labels": {
"env": "prod",
"team": "data"
},
"name": "my-analysis-store",
"type": "S3",
"updated_at": "2024-03-20T15:04:05Z"
}
]
}