跳转到主要内容
GET
/
chat
/
onboarding
/
scenarios
cURL
curl --request GET \
  --url https://app.teable.ai/api/chat/onboarding/scenarios \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "scenarios": [
    {
      "id": "<string>",
      "placeholder": "<string>",
      "prompt": "<string>",
      "files": [
        {
          "token": "<string>",
          "fileName": "<string>",
          "path": "<string>",
          "presignedUrl": "<string>",
          "mimetype": "<string>",
          "size": 123
        }
      ]
    }
  ]
}

授权

Authorization
string
header
必填

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

响应

200 - application/json

Get onboarding scenarios successfully

scenarios
object[]
必填
Last modified on March 5, 2026