Productsup
CDE APIApi referenceBuckets

Create bucket.

Sign in to run requests against the CDE API.
POST
/buckets

Authorization

oAuth2AuthCode
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

name*string

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://loading/buckets" \  -H "Content-Type: application/json" \  -d '{    "name": "New bucket"  }'
{
  "message": "successful operation",
  "data": {
    "id": "ad2094d7-47f1-41c6-9596-aa4e10f8f1e4",
    "name": "New bucket",
    "owner": "019e6e75-24d0-7a40-b6c8-67f85d6a26c8",
    "created-at": "2026-05-28T14:00:31+02:00"
  }
}
{
  "message": "Bad request.",
  "errors": {
    "name": "This value should not be blank."
  }
}
{
  "message": "You have to be authorized to access this resource."
}
{
  "message": "Access denied for user."
}

How is this guide?