Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions api-reference/beta/api/range-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<!-- {
Expand All @@ -67,7 +67,7 @@ POST https://graph.microsoft.com/beta/me/drive/items/{id}/workbook/names/{name}/
Content-type: application/json

{
"shift": "shift-value"
"shift": "Up"
}
```

Expand Down Expand Up @@ -103,7 +103,7 @@ The following example shows the response.
"blockType": "response"
} -->
```http
HTTP/1.1 200 OK
HTTP/1.1 204 No Content
```

<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
Expand Down
4 changes: 2 additions & 2 deletions api-reference/beta/api/range-insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ If successful, this method returns `200 OK` response code and [workbookRange](..
## Example
Here is an example of how to call this API.
##### Request
The following example shows a request.
This example shows how to insert a cell into the worksheet and shift the other cells down.

# [HTTP](#tab/http)
<!-- {
Expand All @@ -67,7 +67,7 @@ POST https://graph.microsoft.com/beta/me/drive/items/{id}/workbook/names/{name}/
Content-type: application/json

{
"shift": "shift-value"
"shift": "Down"
}
```

Expand Down
8 changes: 4 additions & 4 deletions api-reference/v1.0/api/range-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,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)
<!-- {
Expand All @@ -65,7 +65,7 @@ POST https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/names/{name}/
Content-type: application/json

{
"shift": "shift-value"
"shift": "Up"
}
```

Expand Down Expand Up @@ -102,7 +102,7 @@ The following example shows the response.
"truncated": true
} -->
```http
HTTP/1.1 200 OK
HTTP/1.1 204 No Content
```

<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79
Expand Down
4 changes: 2 additions & 2 deletions api-reference/v1.0/api/range-insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ If successful, this method returns `200 OK` response code and [Range](../resourc
## Example
Here is an example of how to call this API.
##### Request
The following example shows a request.
This example shows how to insert a cell into the worksheet and shift the other cells down.

# [HTTP](#tab/http)
<!-- {
Expand All @@ -65,7 +65,7 @@ POST https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/names/{name}/
Content-type: application/json

{
"shift": "shift-value"
"shift": "Down"
}
```

Expand Down
Loading