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. 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.