## Delete connection by ID **delete** `/v3/connections/{connectionId}` Delete a specific connection by ID ### Path Parameters - `connectionId: string` ### Query Parameters - `deleteDocuments: optional string` Whether to also delete documents imported by this connection. Defaults to true. ### Returns - `id: string` - `provider: string` ### Example ```http curl https://api.supermemory.ai/v3/connections/$CONNECTION_ID \ -X DELETE \ -H "Authorization: Bearer $SUPERMEMORY_API_KEY" ``` #### Response ```json { "id": "id", "provider": "provider" } ```