From 20e481e102593993dba3dad3c99ab00c00447880 Mon Sep 17 00:00:00 2001 From: Martin Machacek Date: Mon, 29 Dec 2025 16:43:38 +0100 Subject: [PATCH] Fixes request body and response status code --- api-reference/beta/api/range-delete.md | 8 ++++---- api-reference/beta/api/range-insert.md | 4 ++-- api-reference/v1.0/api/range-delete.md | 8 ++++---- api-reference/v1.0/api/range-insert.md | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/api-reference/beta/api/range-delete.md b/api-reference/beta/api/range-delete.md index e420a31b7b9..5687ccf9667 100644 --- a/api-reference/beta/api/range-delete.md +++ b/api-reference/beta/api/range-delete.md @@ -50,12 +50,12 @@ In the request body, provide a JSON object with the following parameters. ## Response -If successful, this method returns `200 OK` response code. It doesn't return anything in the response body. +If successful, this method returns `204 No Content` response code. It doesn't return anything in the response body. ## Example Here is an example of how to call this API. ##### Request -The following example shows a request. +This example shows how to delete a cell and shift the other cells up. # [HTTP](#tab/http) ```http -HTTP/1.1 200 OK +HTTP/1.1 204 No Content ``` ```http -HTTP/1.1 200 OK +HTTP/1.1 204 No Content ```