List installed integrations
GET
/integrations
const url = 'http://localhost:8000/api/v1/integrations';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8000/api/v1/integrations \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful response
Media type application/json
object
data
Array<object>
object
key
string
name
string
description
string
category
string
icon
string
feature_key
string
configured
boolean
entitled
boolean
ui
Where and how this integration surfaces in the client. Null when the integration declares no UI.
object
Example generated
{ "data": [ { "key": "example", "name": "example", "description": "example", "category": "example", "icon": "example", "feature_key": "example", "configured": true, "entitled": true, "ui": {} } ]}Unauthorized