external
Archives
Bandset
Catalog
Report
Stores
Create a store
Create a store to export data to, under current organization
POST
/
v0
/
stores
Copy
curl --request POST \
--url https://api.pixxel.space/v0/stores \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"name": "my-analysis-store",
"type": "S3",
"configs": {
"bucket": "my-data-bucket",
"region": "us-east-2",
"path_prefix": "data/processed/"
},
"secrets": {},
"labels": {
"env": "prod",
"team": "data"
}
}'
Copy
{
"id": "576d8241-6e78-40ad-b3e6-295edbfe71f5",
"name": "my-analysis-store",
"type": "S3",
"configs": {
"bucket": "my-data-bucket",
"region": "us-east-2",
"path_prefix": "data/processed/"
},
"labels": {
"env": "prod",
"team": "data"
},
"created_at": "2024-03-20T15:04:05Z",
"updated_at": "2024-03-20T15:04:05Z",
"created_by": "ea2a79fc-6f68-40d7-8b79-18195bf74872"
}
Authorizations
Body
application/json
Create Store
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://api.pixxel.space/v0/stores \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"name": "my-analysis-store",
"type": "S3",
"configs": {
"bucket": "my-data-bucket",
"region": "us-east-2",
"path_prefix": "data/processed/"
},
"secrets": {},
"labels": {
"env": "prod",
"team": "data"
}
}'
Copy
{
"id": "576d8241-6e78-40ad-b3e6-295edbfe71f5",
"name": "my-analysis-store",
"type": "S3",
"configs": {
"bucket": "my-data-bucket",
"region": "us-east-2",
"path_prefix": "data/processed/"
},
"labels": {
"env": "prod",
"team": "data"
},
"created_at": "2024-03-20T15:04:05Z",
"updated_at": "2024-03-20T15:04:05Z",
"created_by": "ea2a79fc-6f68-40d7-8b79-18195bf74872"
}
Assistant
Responses are generated using AI and may contain mistakes.