Get Bucket Tags

Get the tags attached to a bucket you own.
EndpointMethodAdmin Required
/api/v1/buckets/:bucketName/tagsGETNo

Returns the tags attached to a bucket you own. This is the same tag-set exposed by the S3-compatible API's GetBucketTagging.

Path Parameters

bucketName
string required
The name of the bucket.

Response

{
    "tags": {
        "env": "prod",
        "team": "storage"
    }
}

tags is an empty object if no tags have been set.

Errors

StatusReason
400Missing bucket name
404Bucket not found (or not owned by you)