Skip to main content
GET
/
integrations
List all integration points
curl --request GET \
  --url https://eris.devops.truu.ai/api/v1/external/integrations \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "connector_type": "<string>",
      "display_name": "<string>",
      "category": "<string>",
      "description": "<string>",
      "signals": [
        "<string>"
      ],
      "configured": true,
      "enabled": true,
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "summary": {
    "total": 123,
    "active": 123,
    "degraded": 123,
    "not_configured": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.truu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Domain-scoped API key. Generate and manage keys from the API Keys page in Settings.

Accepted in two forms:

  • X-API-Key: <key> header (preferred)
  • Authorization: Bearer <key> header (also accepted)

Response

Integration points with summary

items
object[]
summary
object