Skip to main content
GET
/
databases
/
{databaseId}
/
tables
/
{tableId}
/
views
Get Table Views
curl --request GET \
  --url https://tables-api.softr.io/api/v1/databases/{databaseId}/tables/{tableId}/views \
  --header 'Softr-Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "tableId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Softr-Api-Key
string
header
required

Path Parameters

databaseId
string
required
tableId
string
required

Response

A list of table views.

data
object[]