Skip to main content
GET
/
user
/
{userId}
/
integrations
Get User Integrations
curl --request GET \
  --url https://api.klavis.ai/user/{userId}/integrations \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.klavis.ai/user/{userId}/integrations"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/user/{userId}/integrations', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/user/{userId}/integrations', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "integrations": [
    {
      "is_authenticated": true
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Klavis AI API key.

Path Parameters

userId
string
required

The external user ID

Minimum string length: 1

Response

Successful Response

integrations
IntegrationItem · object[]
required