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
2 changes: 1 addition & 1 deletion docs/clients/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Thanks to seatable's full API, virtually anything can be controlled with any programming language.

On [https://api.seatable.io](https://api.seatable.io) you can find all available API commands and sample commands for different programming languages.
On [https://api.seatable.com](https://api.seatable.com) you can find all available API commands and sample commands for different programming languages.

For a few programming languages there are already ready-to-use client APIs classes that do some of the work for you. These are presented in this part of the documentation.
2 changes: 1 addition & 1 deletion docs/clients/php_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ After installation you can easily connect to your SeaTable system and execute AP
### Get information about your account

The following code connects to SeaTable Cloud. You have to provide your `Account Token`.
Please refer to [api.seatable.io](https://api.seatable.io/reference/getaccounttokenfromusername) for guidance on how to obtain an `Account Token`.
Please refer to [api.seatable.com](https://api.seatable.com/reference/getaccounttokenfromusername) for guidance on how to obtain an `Account Token`.

```php
<?php
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/basic_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ SeaTable offers a visual interface, which can be operated with the browser.

![Screenshot of a SeaTable base](/media/elements_seatable_base.png)

Look at the [SeaTable API Reference](https://api.seatable.io/reference/models) for more details about the different objects in SeaTable like:
Look at the [SeaTable API Reference](https://api.seatable.com/reference/models) for more details about the different objects in SeaTable like:

- Table
- View
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/get_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Next to this developer guide there are more documentations available. To learn m

- [SeaTable User Manual](https://help.seatable.com)
- [SeaTable Admin Manual](https://admin.seatable.com)
- [SeaTable API Reference](https://api.seatable.io)
- [SeaTable API Reference](https://api.seatable.com)

See the [official SeaTable channel](https://youtube.com/seatable) on YouTube for tutorials, guides and overviews. Visit [our blog](https://seatable.com/blog/) for latest news and to learn more about what is going on in and around SeaTable.

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a list of all available objects and methods in SeaTable you can use in the plugin development.

For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.io/reference/models).
For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.com/reference/models).

## Common

Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/javascript/objects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This manual list all available objects and methods that are availabe within Java

The JavaScript class does not yet cover all available functions of the SeaTable API. If you are missing a special function, please contact us at [support@seatable.io](mailto:support@seatable.io) and we will try to add the missing functions.

For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.io/reference/models).
For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.com/reference/models).

## Base object

Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/javascript/objects/links.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

!!! question "addLink"

Add link, link other table records. Get more information about linking columns from the [SeaTable API Reference](https://api.seatable.io/reference/create-row-link).
Add link, link other table records. Get more information about linking columns from the [SeaTable API Reference](https://api.seatable.com/reference/create-row-link).

```js
base.addLink(linkId, tableName, linkedTableName, rowId, linkedRowId)
Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/python/basic_structure_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Read here all details about [authentication in Python scripts](/scripts/python/a

SeaTable provides multiple tokens to authenticate. But let's keep things simple! If you develop Python scripts in SeaTable, just use the context object `context.api_token` or provide a so called `API-Token` of a base.

All details can be found in the [SeaTable API Reference](https://api.seatable.io/reference/authentication).
All details can be found in the [SeaTable API Reference](https://api.seatable.com/reference/authentication).

It is even possible to develop a Python in the way that it could be [executed in the cloud and local](/scripts/python/common_questions/#install-and-use-custom-python-libraries) without changing the code.

Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/python/objects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This manual list all available objects and methods that are availabe within pyth

The Python class `seatable_api` does not yet cover all available functions of the SeaTable API. If you are missing a special function, please contact us at [support@seatable.io](mailto:support@seatable.io) and we will try to add the missing functions.

For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.io/reference/models).
For a more detailed description of the used parameters, refer to the data model at the [SeaTable API Reference](https://api.seatable.com/reference/models).

## Authentication

Expand Down