Bearer token obtained from the authenticate endpoint.
Response
List of database integrations available for querying.
Unique identifier for the integration. Use this when sending chat messages.
Human-readable name for the integration.
Type of integration. Currently always "database".
curl -X GET https://api.trellis.sh/v1/integrations \
-H "Authorization: Bearer YOUR_TOKEN"
{
"integrations": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"display_name": "Production Analytics DB",
"type": "database"
},
{
"id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"display_name": "Reporting Database",
"type": "database"
}
]
}