# Delete Personal Connector Configuration div strong 🔨 In Development — This section is still being developed and may change. Permanently delete a personal connector configuration. This action cannot be undone. This endpoint permanently deletes a personal connector configuration, including all associated data such as cached tools and usage logs. The configuration will no longer be available to any assistants. #### Path Parameters **`config_id`** string required The ID of the personal connector configuration to delete (e.g., `pconf_abc123`). Delete configuration ```bash curl https://api.freddy.aitronos.com/v1/personal-connectors/configurations/pconf_abc123 \ -X DELETE \ -H "Authorization: Bearer $FREDDY_API_KEY" ``` ```python import requests import os api_key = os.environ.get("FREDDY_API_KEY") headers = {"Authorization": f"Bearer {api_key}"} response = requests.delete( "https://api.freddy.aitronos.com/v1/personal-connectors/configurations/pconf_abc123", headers=headers ) print(response.json()) ``` ```javascript const response = await fetch('https://api.freddy.aitronos.com/v1/personal-connectors/configurations/pconf_abc123', { method: 'DELETE', headers: { 'Authorization': `Bearer ${process.env.FREDDY_API_KEY}` } }); const data = await response.json(); console.log(data); ``` ## Response 200 OK ```json { "id": "pconf_abc123", "object": "personal_connector.configuration", "deleted": true } ``` Errors ```json { "error": { "type": "not_found_error", "message": "Personal connector configuration with ID 'pconf_abc123' not found.", "code": "configuration_not_found" } } ``` ```json { "error": { "type": "authentication_error", "message": "Invalid API key", "code": "invalid_api_key" } } ``` ```json { "error": { "type": "authorization_error", "message": "You do not have permission to delete this configuration.", "code": "insufficient_permissions" } } ``` ## Cascade Deletion When a configuration is deleted, the following associated data is also removed: - **Cached tools** - All cached tool definitions for this configuration - **Credentials** - Encrypted credentials are permanently deleted - **Usage logs** - Historical usage logs are retained for billing purposes but marked as deleted ## Warning ⚠️ **This action is permanent and cannot be undone.** Make sure you want to delete this configuration before proceeding. If you only want to temporarily disable it, use the [Toggle Configuration](/docs/api-reference/personal-connectors/configurations/toggle) endpoint instead.