Skip to content
Last updated

List all connected accounts for a specific integration tool.

Returns both active and disabled connections so the UI can display the current toggle state for each. Use the is_active field to render enable/disable controls.

GEThttps://api.aitronos.com/v1/personal-connectors/connections/{tool_key}

Path Parameters

tool_key string required

Integration key (e.g., clickup, github, slack).

Query Parameters

organization_id string required

Organization ID (e.g., org_722dd7...).

application_id string optional · Defaults to flowplate

Application scope for filtering connections.


Returns

connections array — All connected accounts for this tool, including disabled ones.

Each connection object contains:

id string — Credential ID (e.g., tcred_43a8fec...). Use this with the Toggle Connection endpoint.

tool_key string — Integration key (e.g., clickup).

display_name string — Human-readable label shown in dropdowns (e.g., My Account - ClickUp).

credential_name string or null — User-set custom name for this connection.

account_email string or null — Email address of the connected account if available.

connection_id string or null — External connection identifier.

is_active boolean — Whether this connection is currently enabled. Disabled connections exist but their tools are not loaded in chat.

created_at string — ISO 8601 timestamp of when the connection was created.

tool_key string (top-level) — The tool key that was queried.

cURL
curl "https://api.aitronos.com/v1/personal-connectors/connections/clickup?organization_id=org_722dd7..." \
  -H "X-API-Key: $FREDDY_API_KEY"