Skip to main content
GET
/
table
/
{tableId}
/
view
/
{viewId}
/
filter-link-records
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/table/{tableId}/view/{viewId}/filter-link-records \
  --header 'Authorization: Bearer <token>'
[
  {
    "tableId": "<string>",
    "records": [
      {
        "id": "<string>",
        "title": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tableId
string
required
viewId
string
required

Response

200 - application/json

Returns the view to filter the configured records.

tableId
string
required
records
object[]
required
Last modified on December 10, 2025