GET /api/database/views/table/{table_id}/
Lists all views of the table related to the provided table_id
. If the workspace is related to a template, then this endpoint will be publicly accessible. A table can have multiple views. Each view can display the data in a different way. For example the grid
view shows the in a spreadsheet like way. That type has custom endpoints for data retrieval and manipulation. In the future other views types like a calendar or Kanban are going to be added. Each type can have different properties.
Servers
- /
Path parameters
Name | Type | Required | Description |
---|---|---|---|
table_id |
Integer | Yes |
Returns only views of the table related to the provided value. |
Query parameters
Name | Type | Required | Description |
---|---|---|---|
limit |
Integer | No |
The maximum amount of views that must be returned. This endpoint doesn't support pagination, but if you for example just need to fetch the first view, you can do that by setting a limit. There isn't a limit by default. |
include |
String | No |
A comma separated list of extra attributes to include on each view in the response. The supported attributes are |
type |
String | No |
Optionally filter on the view type. If provided, only views of that type will be returned. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.