From 8db237f1a5655013e3205303bfac1199c862d3b7 Mon Sep 17 00:00:00 2001 From: Theo Truong Date: Mon, 20 Nov 2023 14:08:35 -0700 Subject: [PATCH] # 2 Signed-off-by: Theo Truong --- guides/low_level_api.md | 1 - 1 file changed, 1 deletion(-) diff --git a/guides/low_level_api.md b/guides/low_level_api.md index 88d451aec..18105b536 100644 --- a/guides/low_level_api.md +++ b/guides/low_level_api.md @@ -53,7 +53,6 @@ const body = [ ]; await client.http.post({ path: `_bulk`, body }); ``` -Note that while most endpoints accept a JSON body, the bulk endpoint accepts a newline-delimited JSON (NDJSON) body. When you provide these methods with an array as body, they will automatically serialize it to NDJSON. Delete the index using `http.delete`: ```javascript