## Delete connection **delete** `/v3/connections/{provider}` Delete connection for a specific provider and container tags ### Path Parameters - `provider: "notion" or "google-drive" or "onedrive" or 4 more` - `"notion"` - `"google-drive"` - `"onedrive"` - `"gmail"` - `"github"` - `"web-crawler"` - `"s3"` ### Body Parameters - `containerTags: array of string` Optional comma-separated list of container tags to filter connections by ### Returns - `id: string` - `provider: string` ### Example ```http curl https://api.supermemory.ai/v3/connections/$PROVIDER \ -X DELETE \ -H "Authorization: Bearer $SUPERMEMORY_API_KEY" ``` #### Response ```json { "id": "id", "provider": "provider" } ```