You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,4 +98,9 @@ git push --tags
98
98
```
99
99
100
100
Pushing the tag triggers a GitHub Action that runs the `sync-with-postman.sh` script.
101
-
This action requires the GitHub secret `POSTMAN_API_KEY`, which you can generate at: https://seatable.postman.co/settings/me/api-keys.
101
+
This action requires the GitHub secret `POSTMAN_API_KEY`, which you can generate at: https://seatable.postman.co/settings/me/api-keys.
102
+
103
+
## Check for Invalid Links
104
+
105
+
Run `./check-links.sh` to validate all links in this OpenAPI documentation.
106
+
This script generates a `result-YYYY-MM-DD.txt` file listing all valid and invalid links. Search this file for **404** errors or other issues and fix them accordingly.
Copy file name to clipboardExpand all lines: base_operations.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2440,7 +2440,7 @@ paths:
2440
2440
>
2441
2441
> New rows (INSERT statement) are always added to the **big data backend**. An error message will be returned, if the big data backend is not activated for the target base.
2442
2442
2443
-
The complete [SQL Reference](https://developer.seatable.com/scripts/sql/reference/) can be found documentation in the developer manual.
2443
+
The complete [SQL Reference](https://developer.seatable.com/scripts/sql/functions/) can be found documentation in the developer manual.
2444
2444
2445
2445
Here are some example requests for a fictitious table *Family* with the columns *name*, *age* and *birthday*:
@@ -107,13 +107,13 @@ We recommend using the new `/api-gateway/` endpoints. These endpoints are faster
107
107
108
108
> 🚧 Breaking changes
109
109
>
110
-
> -[Get Row](/reference/getrowdeprecated) and [List Rows](/reference/listrowsdeprecated): `Link` now returns an array containing `display_value` and `row_id` instead of a string with only the `display_value`. This change harmonizes the output with `Get Row` and `List Rows with SQL` endpoints.
111
-
> -[Get Row](/reference/getrowdeprecated) and [List Rows](/reference/listrowsdeprecated): `Link Formula` now returns the right output type depending of the result. Single numbers are returned as integers, multiple values as arrays. This change harmonizes the output of the `Get Row`, `List Rows` and `List Rows with SQL` endpoints.
110
+
> -[Get Row](/reference/getrow) and [List Rows](/reference/listrows): `Link` now returns an array containing `display_value` and `row_id` instead of a string with only the `display_value`. This change harmonizes the output with `Get Row` and `List Rows with SQL` endpoints.
111
+
> -[Get Row](/reference/getrow) and [List Rows](/reference/listrows): `Link Formula` now returns the right output type depending of the result. Single numbers are returned as integers, multiple values as arrays. This change harmonizes the output of the `Get Row`, `List Rows` and `List Rows with SQL` endpoints.
112
112
113
113
> 👍 Other changes
114
114
>
115
-
> -[Get Row](/reference/getrowdeprecated): All column values are now consistently returned. If a value is not defined, `null` is returned instead of omitting the value.
116
-
> -[List Rows](/reference/listrowsdeprecated): All column values are now consistently returned. If a value is not defined, `null` is returned instead of omitting the value.
115
+
> -[Get Row](/reference/getrow): All column values are now consistently returned. If a value is not defined, `null` is returned instead of omitting the value.
116
+
> -[List Rows](/reference/listrows): All column values are now consistently returned. If a value is not defined, `null` is returned instead of omitting the value.
117
117
> -[Query SeaTable with SQL](/reference/querysql): Now supports `parameters` to protect against SQL injection.
118
118
119
119
For more details about the changes, please refer to [this post on the SeaTable Forum](https://forum.seatable.com/t/important-changes-to-api-and-seatable-cloud-with-version-5-0/4887).
@@ -131,11 +131,11 @@ The SeaTable API Reference for version 4.4 is no longer accessible here. However
131
131
> 🚧 Breaking changes
132
132
>
133
133
> - data collection table calls (user) were removed. This was done because data collection tables will be disabled in general with version 5.0. In SeaTable Cloud this feature was never available.
134
-
> -[Get Row](/reference/getrowdeprecated): `_mtime` and `_ctime` are not returned if these column types are defined in this base. This is to harmonize the output with `List Rows` and `List Rows with SQL`.
134
+
> -[Get Row](/reference/getrow): `_mtime` and `_ctime` are not returned if these column types are defined in this base. This is to harmonize the output with `List Rows` and `List Rows with SQL`.
135
135
136
136
> 👍 Other changes
137
137
>
138
-
> -[List Rows](/reference/listrowsdeprecated): The options `order_by` and `direction` were removed to avoid conflict situations with a selected view.
138
+
> -[List Rows](/reference/listrows): The options `order_by` and `direction` were removed to avoid conflict situations with a selected view.
139
139
> - API-Gateway calls now return the current api usage and limits via X-header.
140
140
141
141
## Version 4.3 (08.02.2024)
@@ -146,8 +146,8 @@ The SeaTable API Reference for version 4.3 is no longer accessible here. However
146
146
>
147
147
> **Base Operations**
148
148
>
149
-
> -[Create Row Links in Big Data](/reference/createbigdatarowslinkdeprecated) <spanclass="APIMethod APIMethod_fixedWidth APIMethod_post">post</span> `/dtable-db/api/v1/base/{base_uuid}/links/`
150
-
> -[Delete Row Links in Big Data](/reference/deletebigdatarowlinksdeprecated) <spanclass="APIMethod APIMethod_fixedWidth APIMethod_delete">delete</span> `/dtable-db/api/v1/base/{base_uuid}/links/`
149
+
> -**Create Row Links in Big Data** <spanclass="APIMethod APIMethod_fixedWidth APIMethod_post">post</span> `/dtable-db/api/v1/base/{base_uuid}/links/`
150
+
> -**Delete Row Links in Big Data** <spanclass="APIMethod APIMethod_fixedWidth APIMethod_delete">delete</span> `/dtable-db/api/v1/base/{base_uuid}/links/`
0 commit comments