Get all connected personal connectors for the current user.
GEThttps://api.aitronos.com/v1/personal-connectors?organizationId={organizationId}
organization_id string required Organization ID (e.g., org_722dd7...).
forceCheck boolean optional Bypass cache and force fresh check. Default: false.
A list of connected personal connector instances with their metadata.
Bash
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/personal-connectors?organizationId=org_722dd7..." \
-H "X-API-Key: $FREDDY_API_KEY"Response:
[
{
"connector_id": "pcon_abc123",
"connector_type": "atlassian",
"account_email": "user@example.com",
"is_active": true,
"last_sync_at": "2025-11-14T10:30:00Z",
"created_at": "2025-11-10T08:00:00Z",
"mcp_configuration_id": "mcp_xyz789"
},
{
"connector_id": "pcon_def456",
"connector_type": "github",
"account_email": "developer@example.com",
"is_active": false,
"last_sync_at": "2025-11-12T15:45:00Z",
"created_at": "2025-11-05T12:30:00Z",
"mcp_configuration_id": "mcp_abc123"
}
]