Buckets
Manage your Stook Buckets — create, list, update, and delete them.
The unique identifier of the organization
Bucket details retrieved successfully
GET /api/api/v2/stook/{organization_uuid}/bucket HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Bucket details retrieved successfully
{
  "status": true,
  "data": [
    {
      "uuid": "text",
      "organization_uuid": "text",
      "name": "text",
      "region": "text",
      "size": "text",
      "tags": [
        {
          "key": "text",
          "label": "text"
        }
      ]
    }
  ]
}The UUID of the organization
The UUID of the bucket
Bucket details retrieved successfully
GET /api/api/v2/stook/{organization_uuid}/bucket/{bucket_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Bucket details retrieved successfully
{
  "status": true,
  "data": {
    "uuid": "text",
    "organization_uuid": "text",
    "name": "text",
    "region": "text",
    "size": "text",
    "tags": [
      {
        "key": "text",
        "label": "text"
      }
    ]
  }
}The unique identifier of the organization
The name of the bucket
The region where the bucket will be created
Bucket successfully created
POST /api/api/v2/stook/{organization_uuid}/bucket HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 74
{
  "name": "text",
  "region": "eu-ist-1",
  "tags": [
    {
      "key": "text",
      "label": "text"
    }
  ]
}Bucket successfully created
{
  "status": true,
  "data": {
    "uuid": "text",
    "organization_uuid": "text",
    "name": "text",
    "region": "text",
    "size": "text",
    "tags": [
      {
        "key": "text",
        "label": "text"
      }
    ]
  }
}The unique identifier of the organization
The unique identifier of the bucket
Bucket successfully updated
PUT /api/api/v2/stook/{organization_uuid}/bucket/{bucket_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40
{
  "tags": [
    {
      "key": "text",
      "label": "text"
    }
  ]
}Bucket successfully updated
{
  "status": true,
  "data": {
    "uuid": "text",
    "organization_uuid": "text",
    "name": "text",
    "region": "text",
    "size": "text",
    "tags": [
      {
        "key": "text",
        "label": "text"
      }
    ]
  }
}The unique identifier of the organization
The unique identifier of the bucket
Bucket successfully deleted
DELETE /api/api/v2/stook/{organization_uuid}/bucket/{bucket_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Bucket successfully deleted
{
  "status": true,
  "data": {
    "uuid": "text",
    "organization_uuid": "text",
    "name": "text"
  }
}Last updated
Was this helpful?