Skip to content

Commit 0c6335c

Browse files
authored
Merge branch 'main' into api-update-glide-pr-30583
2 parents 88b378e + 512e677 commit 0c6335c

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

api-reference/v2/general/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebarTitle: Introduction
55

66
The Glide APIv2 is a RESTful API that allows you to programmatically interact with the Glide platform. These are the developer docs for version 2 of the API, initially released in July of 2024.
77

8-
<Warning>This API is currently in a public alpha state. Feedback is welcome. However, please be aware that **breaking changes are expected**!</Warning>
8+
<Warning>This API is currently in a public beta state. Feedback is welcome. However, please be aware that **breaking changes are expected**!</Warning>
99

1010
## Functionality
1111

api-reference/v2/resources/changelog.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ sidebarTitle: Changelog
77

88
- Added `GET /tables/{tableID}/rows` endpoint to retrieve rows from a specified table with pagination.
99

10+
### November 6, 2024
11+
12+
- Added a DELETE endpoint to remove a row.
13+
1014
### October 25, 2024
1115

1216
- Introduced a PATCH endpoint to update an existing row.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: Delete Row
3+
openapi: delete /tables/{tableID}/rows/{rowID}
4+
---
5+
6+
Deletes a row in a Big Table. No error is returned if the row does not exist.

mint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"api-reference/v2/tables/post-tables",
4040
"api-reference/v2/tables/post-table-rows",
4141
"api-reference/v2/tables/put-tables",
42-
"api-reference/v2/tables/patch-table-row"
42+
"api-reference/v2/tables/patch-table-row",
43+
"api-reference/v2/tables/delete-table-row"
4344
]
4445
},
4546
{

0 commit comments

Comments
 (0)