Skip to main content
GET
/
integrity
/
base
/
{baseId}
/
link-check
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/integrity/base/{baseId}/link-check \
  --header 'Authorization: Bearer <token>'
{
  "hasIssues": true,
  "linkFieldIssues": [
    {
      "issues": [
        {
          "type": "ForeignTableNotFound",
          "message": "<string>",
          "fieldId": "<string>",
          "tableId": "<string>"
        }
      ],
      "baseId": "<string>",
      "baseName": "<string>",
      "tableId": "<string>",
      "tableName": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required

Query Parameters

tableId
string
required

Response

200 - application/json

Returns integrity check results for the base

hasIssues
boolean
required
Last modified on December 10, 2025