diff --git a/docs/http-api/bucket-api.mdx b/docs/http-api/bucket-api.mdx index 29e99ee7..2cff6fba 100644 --- a/docs/http-api/bucket-api.mdx +++ b/docs/http-api/bucket-api.mdx @@ -144,6 +144,10 @@ parameters are empty. If authentication is enabled, the method needs a valid API token with full access. +**Changes**: + +- v1.12: HARD quota type was introduced. + +## Rename a Bucket + +To rename a bucket, the request should have a JSON document with the new name. + +If authentication is enabled, the method needs a valid API token with full access. + +**Changes**: + +- v1.12: the endpoint was introduced. + + + ## Remove a Bucket Remove a bucket with all its entries and stored data. diff --git a/docs/http-api/entry-api/update_data.mdx b/docs/http-api/entry-api/update_data.mdx index d6fd9297..8dbab8c9 100644 --- a/docs/http-api/entry-api/update_data.mdx +++ b/docs/http-api/entry-api/update_data.mdx @@ -73,7 +73,7 @@ if authentication is enabled. { type: "header", details: { - name: "x-reduct-label-", + name: "x-reduct-label-[name]", description: "A value of a label assigned to the record", isRequired: false, }, @@ -84,13 +84,6 @@ if authentication is enabled. status: "200", message: "OK", summary: "The record is written", - description: ( -
-          {`{
-    // Response
-}`}
-        
- ), }, { status: "400", @@ -165,3 +158,78 @@ Existing labels not mentioned in the request stay unchanged. }, ]} /> + +## Rename an Entry + +To rename an entry, the request should have a JSON document with the new name. + +If authentication is enabled, the method needs a valid API token with full access. + +**Changes**: + +- Version 1.12: The method was introduced. + +