Skip to content
Last updated

Delete Personal Connector Configuration

🔨 In Development — This section is still being developed and may change.
Permanently delete a personal connector configuration. This action cannot be undone.
DELETEhttps://api.freddy.aitronos.com/v1/personal-connectors/configurations/{config_id}

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).

Bash
curl https://api.freddy.aitronos.com/v1/personal-connectors/configurations/pconf_abc123 \
  -X DELETE \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "id": "pconf_abc123",
  "object": "personal_connector.configuration",
  "deleted": true
}

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 endpoint instead.