Ellipsis APIReferenceIntegrations

Get Integrations

Return a read-only view of which integrations are connected for the calling customer, so an agent authoring another agent's config can learn which repositories, channels, teams, and organizations it may name before POST /configs. Available to all credential types including sandbox tokens: the responses never include OAuth tokens or any other secret.

GET
/v1/integrations

Return a read-only view of which integrations are connected for the calling customer, so an agent authoring another agent's config can learn which repositories, channels, teams, and organizations it may name before POST /configs.

Available to all credential types including sandbox tokens: the responses never include OAuth tokens or any other secret.

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Header Parameters

user-agent?string|null

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/integrations"
{  "github": {    "account_login": "string",    "account_type": "User",    "repository_count": 0,    "repository_selection": "all",    "suspended": true  },  "jira": {    "cloud_id": "string"  },  "linear": {    "organization_id": "string",    "teams": [      {        "id": "string",        "is_enabled": true,        "key": "string",        "name": "string"      }    ]  },  "sentry": [],  "slack": {    "operations_channel_id": "string",    "team_id": "string",    "team_name": "string"  }}