跳转到主要内容
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>"
    }
  ]
}

授权

Authorization
string
header
必填

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

路径参数

baseId
string
必填

查询参数

tableId
string
必填

响应

200 - application/json

Returns integrity check results for the base

hasIssues
boolean
必填
Last modified on December 10, 2025