跳转到主要内容
GET
/
user-integrations
cURL
curl --request GET \
  --url 'https://app.teable.ai/api/user-integrations?provider=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "integrations": [
    {
      "id": "<string>",
      "userId": "<string>",
      "provider": "slack",
      "name": "<string>",
      "createdTime": "<string>",
      "hasSecret": true,
      "metadata": {
        "userInfo": {
          "id": "<string>",
          "name": "<string>",
          "email": "<string>"
        },
        "teamInfo": {
          "id": "<string>",
          "name": "<string>"
        }
      },
      "lastUsedTime": "<string>",
      "connectedTime": "<string>",
      "lastModifiedTime": "<string>"
    }
  ]
}

授权

Authorization
string
header
必填

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

查询参数

provider
enum<string>

Filter by provider

可用选项:
slack

响应

200 - application/json

Returns the list of user integration.

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