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