From d6287ce867b141c226aa21c0d95d7db1d55939c1 Mon Sep 17 00:00:00 2001 From: writinwaters Date: Fri, 12 Dec 2025 11:23:32 +0800 Subject: [PATCH] minor --- docs/references/http_api_reference.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/references/http_api_reference.md b/docs/references/http_api_reference.md index c91e5533b..69f842b23 100644 --- a/docs/references/http_api_reference.md +++ b/docs/references/http_api_reference.md @@ -2183,13 +2183,13 @@ Batch update or delete document-level metadata within a specified dataset. If bo - `"empty"` - `"not empty"` - `"value"`: `string` The key value to search by. -- `"updates"`: `list[object]`, *optional* Replaces metadata of the retrieved documents. - Each object: `{ "key": string, "match": string, "value": string }` +- `"updates"`: (*Body parameter*), `list[object]`, *optional* + Replaces metadata of the retrieved documents. Each object: `{ "key": string, "match": string, "value": string }`. - `"key"`: `string` The name of the key to update. - `"match"`: `string` *optional* The current value of the key to update. When omitted, the corresponding keys are updated to `"value"` regardless of their current values. - `"value"`: `string` The new value to set for the specified keys. -- `"deletes`: `list[ojbect]`, *optional* Deletes metadata of the retrieved documents. - Each object: `{ "key": string, "value": string }` +- `"deletes`: (*Body parameter*), `list[ojbect]`, *optional* + Deletes metadata of the retrieved documents. Each object: `{ "key": string, "value": string }`. - `"key"`: `string` The name of the key to delete. - `"value"`: `string` *Optional* The value of the key to delete. - When provided, only keys with a matching value are deleted.