GET
/
admin
/
setting
/
public
shell
curl --request GET \
  --url https://app.teable.cn/api/admin/setting/public \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "instanceId": "<string>",
  "brandName": "<string>",
  "brandLogo": "<string>",
  "disallowSignUp": true,
  "disallowSpaceCreation": true,
  "disallowSpaceInvitation": true,
  "enableEmailVerification": true,
  "enableWaitlist": true,
  "createdTime": "<string>",
  "aiConfig": {
    "enable": true,
    "llmProviders": [
      {
        "type": "openai",
        "name": "<string>",
        "models": "",
        "isInstance": true
      }
    ],
    "chatModel": {
      "lg": "<string>",
      "md": "<string>",
      "sm": "<string>",
      "ability": {
        "image": true,
        "pdf": true,
        "webSearch": true
      }
    },
    "capabilities": {
      "disableActions": [
        "<string>"
      ]
    }
  },
  "webSearchEnabled": true,
  "appGenerationEnabled": true
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Returns the public instance settings.

instanceId
string
required
aiConfig
object | null
required
brandName
string | null
disallowSignUp
boolean | null
disallowSpaceCreation
boolean | null
disallowSpaceInvitation
boolean | null
enableEmailVerification
boolean | null
enableWaitlist
boolean | null
createdTime
string
webSearchEnabled
boolean
appGenerationEnabled
boolean