🔨 In Development — This section is still being developed and may change.
Retrieve detailed information about a specific personal connector configuration, including its settings and current health status.
GEThttps://api.freddy.aitronos.com/v1/personal-connectors/configurations/{config_id}
This endpoint returns a single PersonalConnectorConfiguration object. Note that credentials are always masked in the response for security reasons.
config_id string required The ID of the personal connector configuration to retrieve (e.g., pconf_abc123).
Bash
- Bash
- Python
- JavaScript
curl https://api.freddy.aitronos.com/v1/personal-connectors/configurations/pconf_abc123 \
-H "Authorization: Bearer $FREDDY_API_KEY"{
"id": "pconf_abc123",
"object": "personal_connector.configuration",
"userId": "user_xyz789",
"apiKeyId": null,
"organizationId": "org_123",
"personalConnectorId": "pcon_github",
"name": "My Backend Repo",
"configuration": {
"repository": "aitronos/freddy-backend",
"branch": "main",
"paths": ["src/", "docs/"]
},
"credentials": "***REDACTED***",
"enabled": true,
"healthStatus": "healthy",
"lastSyncAt": "2025-10-07T10:45:00Z",
"lastError": null,
"description": "Access to Freddy Backend repository for AI assistance.",
"metadata": {},
"createdAt": "2025-10-07T10:45:00Z",
"updatedAt": "2025-10-07T10:45:00Z"
}The credentials field is always returned as ***REDACTED*** for security reasons. Credentials are encrypted at rest and never exposed through the API. If you need to update credentials, use the Update Configuration endpoint.