From 659e09055118cb4937e89861bd5d1592d4d39a52 Mon Sep 17 00:00:00 2001 From: Alex Corrado Date: Tue, 26 Nov 2024 16:05:36 +0000 Subject: [PATCH 1/2] Add warning about user-specific columns --- api-reference/v2/tables/put-tables.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api-reference/v2/tables/put-tables.mdx b/api-reference/v2/tables/put-tables.mdx index 682047a..7da79dd 100644 --- a/api-reference/v2/tables/put-tables.mdx +++ b/api-reference/v2/tables/put-tables.mdx @@ -5,6 +5,10 @@ openapi: put /tables/{tableID} Overwrite an existing Big Table by clearing all rows and adding new data. + +There is currently no way to supply values for user-specific columns in the API. Those columns will be cleared when using this endpoint. + + ### Updating the Schema You can optionally update the table schema at the same time by providing a new schema in the JSON request body. If you do not provide a schema, the existing schema will be used. From b22d16e2cca79e5e728c9552a9cde9603b16fd96 Mon Sep 17 00:00:00 2001 From: Alex Corrado Date: Tue, 26 Nov 2024 16:12:59 +0000 Subject: [PATCH 2/2] Update changelog.mdx --- api-reference/v2/resources/changelog.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api-reference/v2/resources/changelog.mdx b/api-reference/v2/resources/changelog.mdx index a12ad41..b416e02 100644 --- a/api-reference/v2/resources/changelog.mdx +++ b/api-reference/v2/resources/changelog.mdx @@ -3,6 +3,10 @@ title: Glide API Changelog sidebarTitle: Changelog --- +### November 26, 2024 + +- Added a warning that using the `PUT /tables` endpoint to overwrite a table will clear user-specific columns. + ### November 21, 2024 - Introduced `HEAD /tables/{tableID}/rows` endpoint to retrieve the current version of table data via `ETag` header.