Skip to main content
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

provider
enum<string>

Filter by provider

Available options:
slack

Response

200 - application/json

Returns the list of user integration.

integrations
object[]
required
Last modified on March 5, 2026