GET
/
integrity
/
base
/
{baseId}
/
link-check
curl --request GET \
  --url https://app.teable.io/api/integrity/base/%7BbaseId%7D/link-check \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "hasIssues": true,
  "linkFieldIssues": [
    {
      "baseId": "<string>",
      "baseName": "<string>",
      "fieldId": "<string>",
      "fieldName": "<string>",
      "tableId": "<string>",
      "tableName": "<string>",
      "issues": [
        {
          "type": "ForeignTableNotFound",
          "message": "<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

Response

200 - application/json
Returns integrity check results for the base
hasIssues
boolean
required